Files
a2b53ed8-2f41-4137-a911-db1…/next.config.ts
Nikolay Pecheniev 6a45643528 Initial commit
2026-01-06 12:05:21 +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;