2026-02-19 05:35:31 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
images: {
|
|
|
|
|
domains: [
|
|
|
|
|
"mikulnews.com",
|
|
|
|
|
"dev.mikulnews.com",
|
|
|
|
|
"jaecoocihampelasbdg.com",
|
|
|
|
|
"dev.arahnegeri.com",
|
|
|
|
|
"qudo.id",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
2026-02-17 09:05:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|