2025-12-30 06:17:20 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2025-07-13 07:48:15 +00:00
|
|
|
images: {
|
2025-12-30 06:42:29 +00:00
|
|
|
domains: [
|
|
|
|
|
"mikulnews.com",
|
|
|
|
|
"dev.mikulnews.com",
|
|
|
|
|
"jaecoocihampelasbdg.com",
|
|
|
|
|
"jaecookelapagading.com",
|
|
|
|
|
],
|
2025-07-13 07:48:15 +00:00
|
|
|
},
|
|
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|