Files
shop-front/next.config.ts
T
2025-08-03 15:53:06 +03:30

21 lines
338 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "**",
},
],
unoptimized: false,
},
};
export default nextConfig;