Files
3dd5905d-1f3d-4e7c-81ea-5e3…/next.config.ts
Nikolay Pecheniev 77f964f8b7 Initial commit
2026-03-19 14:50:31 +02:00

32 lines
656 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
experimental: {
serverComponentsHmrCache: false,
},
images: {
localPatterns: [
{
pathname: '/**',
},
],
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;