Files
349ac5a0-a81e-48ee-84cd-940…/next.config.ts
2025-12-29 12:52:10 +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;