Files
5c31e6b2-d731-4368-b998-3ef…/next.config.ts
vitalijmulika 2089034445 Initial commit
2026-01-06 17:04:40 +02:00

19 lines
365 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',
},
],
}
};
export default nextConfig;