2025-12-30 06:17:20 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2025-07-13 07:48:15 +00:00
|
|
|
images: {
|
2026-01-28 18:29:25 +00:00
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "jaecoocihampelasbdg.com",
|
|
|
|
|
pathname: "/api/**",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "jaecookelapagading.com",
|
|
|
|
|
pathname: "/api/**",
|
|
|
|
|
},
|
2025-12-30 06:42:29 +00:00
|
|
|
],
|
2025-07-13 07:48:15 +00:00
|
|
|
},
|
2026-01-28 18:29:25 +00:00
|
|
|
|
2025-07-13 07:48:15 +00:00
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
2026-01-28 18:29:25 +00:00
|
|
|
|
2025-07-13 07:48:15 +00:00
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|