Files
2897b841-147a-4f41-8aac-8d4…/next.config.ts
Nikolay Pecheniev 9018124565 Initial commit
2026-01-07 13:11:19 +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;