Files
045ea500-38a8-4bfb-8933-bc3…/next.config.ts
Nikolay Pecheniev 4de6a1b628 Initial commit
2025-12-28 13:11:13 +02:00

19 lines
366 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;