Files
35ad59b7-1df6-486d-ad95-cad…/next.config.ts
Nikolay Pecheniev f5836d6388 Initial commit
2025-12-27 18:08:11 +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;