2025-12-23 09:00:57 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2025-10-20 02:53:39 +00:00
|
|
|
images: {
|
2026-01-06 06:47:28 +00:00
|
|
|
domains: ["mikulnews.com", "dev.mikulnews.com", "dev.wargabicara.com"],
|
2025-10-20 02:53:39 +00:00
|
|
|
},
|
|
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|