Files
7977e712-8e2c-4a6a-88c7-4d7…/next.config.ts
Nikolay Pecheniev b823192c4f Initial commit
2025-12-29 14:28:17 +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;