jaecoo-cihampelas/next.config.ts

28 lines
525 B
TypeScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "jaecoocihampelasbdg.com",
pathname: "/api/**",
},
{
protocol: "https",
hostname: "jaecookelapagading.com",
pathname: "/api/**",
},
],
},
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
optimizePackageImports: ["@ckeditor/ckeditor5-react", "react-apexcharts"],
},
};
export default nextConfig;