diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..9649322 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,32 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + allowedDevOrigins: ["*.sandbox-staging.webild.io", "*.webildsbx.cc", "*.webild.io"], + devIndicators: false, + experimental: { + serverComponentsHmrCache: false, + }, + images: { + localPatterns: [ + { + pathname: '/**', + }, + ], + remotePatterns: [ + { + protocol: 'https', + hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com', + }, + { + protocol: 'https', + hostname: 'img.b2bpic.net', + }, + { + protocol: 'https', + hostname: 'freepik.com', + }, + ], + } +}; + +export default nextConfig;