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-28 18:19:14 +00:00
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "jaecoocihampelasbdg.com",
|
|
|
|
|
pathname: "/api/**",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "jaecookelapagading.com",
|
|
|
|
|
pathname: "/api/**",
|
|
|
|
|
},
|
2026-01-27 17:39:40 +00:00
|
|
|
],
|
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,
|
|
|
|
|
},
|
2026-01-28 18:19:14 +00:00
|
|
|
|
2025-07-14 07:31:51 +00:00
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|