Files
bac14a48-730c-4fa7-8290-79a…/next.config.ts
Nikolay Pecheniev 59f3993b14 Initial commit
2026-03-12 14:15:45 +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;