Files
6bcdca10-4c2c-4e89-a543-b41…/next.config.ts
kudinDmitriyUp 08a5f377c8 Initial commit
2026-03-26 12:33:31 +00:00

33 lines
743 B
TypeScript

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;