2025-12-23 08:54:33 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2025-09-22 13:48:44 +00:00
|
|
|
images: {
|
2026-01-06 05:35:55 +00:00
|
|
|
domains: [
|
|
|
|
|
"mikulnews.com",
|
|
|
|
|
"dev.mikulnews.com",
|
|
|
|
|
"dev.kebaikanindonesia.com",
|
|
|
|
|
],
|
2025-09-22 13:48:44 +00:00
|
|
|
},
|
|
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|