Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2025-12-29 10:51:04 +00:00

View File

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