Files
beb3efcf-19ed-4400-b592-6db…/next.config.ts
Nikolay Pecheniev 21e5931cb4 Initial commit
2026-03-13 16:05:38 +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;