Files
6628add6-4fd5-4748-ae64-30b…/next.config.ts
Nikolay Pecheniev 3eb34c7449 Initial commit
2025-12-29 14:20:46 +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;