Files
0ced91a9-f67e-47b3-a353-51a…/next.config.ts
Nikolay Pecheniev 3412c86863 Initial commit
2026-02-09 19:38:58 +02:00

27 lines
562 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',
},
{
protocol: 'https',
hostname: 'img.b2bpic.net',
},
{
protocol: 'https',
hostname: 'freepik.com',
},
],
}
};
export default nextConfig;