21 lines
409 B
TypeScript
21 lines
409 B
TypeScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: [
|
|
"mikulnews.com",
|
|
"dev.mikulnews.com",
|
|
"jaecoocihampelasbdg.com",
|
|
"dev.arahnegeri.com",
|
|
"qudo.id",
|
|
],
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|