web-arah-negeri/next.config.ts

20 lines
392 B
TypeScript
Raw Normal View History

2025-12-23 06:20:02 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2025-10-17 10:21:16 +00:00
images: {
2026-01-05 07:55:07 +00:00
domains: [
"mikulnews.com",
"dev.mikulnews.com",
"jaecoocihampelasbdg.com",
"dev.arahnegeri.com",
],
2025-10-17 10:21:16 +00:00
},
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
},
};
export default nextConfig;