Files
9eda8d89-d834-420d-a193-2bf…/next.config.ts
Nikolay Pecheniev 52f48c14e0 Initial commit
2025-12-29 13:53:49 +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;