Files
91d89c38-3880-40f0-a8f9-ae5…/next.config.ts
2025-12-29 12:46:55 +02:00

24 lines
431 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
experimental: {
serverComponentsHmrCache: false,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com',
},
],
},
server: {
hmr: {
overlay: false,
},
},
};
export default nextConfig;