Files
edcba0c3-c583-4289-8c99-b09…/next.config.ts
Nikolay Pecheniev 153bab7cab Initial commit
2025-12-26 17:24:20 +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;