diff --git a/next.config.ts b/next.config.ts index 8375613..5f7155e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,23 +1,16 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - devIndicators: false, experimental: { - serverComponentsHmrCache: false, + serverComponentsHmrCache: false, }, images: { - remotePatterns: [ - { - protocol: 'https', - hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com', - }, - ], - }, - server: { - hmr: { - overlay: false, - }, + domains: [ + "webuild-dev.s3.eu-north-1.amazonaws.com", + "images.unsplash.com", + "via.placeholder.com", + ], }, }; -export default nextConfig; +export default nextConfig; \ No newline at end of file