Files
react-editor-shopify/next.config.mjs
2026-06-03 22:38:26 -04:00

29 lines
563 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.shopify.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "**.myshopify.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "supabase.frontend.co",
pathname: "/storage/v1/object/public/**",
},
],
},
};
export default nextConfig;