Files
4a6933e1-0479-48c1-8a6b-e43…/next.config.ts
Nikolay Pecheniev 5ab56f9515 Initial commit
2025-12-28 11:51:53 +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;