Files
cmc_frontend/next.config.ts
2025-10-10 01:21:16 +05:30

29 lines
572 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
unoptimized: true, // ✅ disable Next.js optimization
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "cmcbackend.rootxwire.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "maincmc.rootxwire.com",
pathname: "/**",
},
],
},
};
export default nextConfig;