Files
65f80da8-de9b-4fc6-beec-a7e…/next.config.ts
Nikolay Pecheniev 812360af5b Initial commit
2025-12-28 12:54:09 +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;