jaecoo-kelapagading/next.config.ts

21 lines
397 B
TypeScript
Raw Normal View History

2025-12-23 04:20:25 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2025-07-14 07:31:51 +00:00
images: {
2026-01-27 17:39:40 +00:00
domains: [
"mikulnews.com",
"dev.mikulnews.com",
"jaecoocihampelasbdg.com",
"jaecookelapagading.com",
],
2025-07-14 07:31:51 +00:00
},
2026-01-27 17:39:40 +00:00
2025-07-14 07:31:51 +00:00
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
},
};
export default nextConfig;