Files
77b16ab7-362c-44ce-9236-b65…/next.config.ts
Nikolay Pecheniev f1499b8e84 Initial commit
2026-01-06 14:36:11 +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;