Files
f366e62a-bcfb-4402-b818-58f…/next.config.ts
vitalijmulika 1830d50da6 Initial commit
2026-03-13 13:15:35 +02:00

33 lines
683 B
TypeScript

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