Files
frontend/next.config.ts
pradeepkumar a0559a17f1 fix
2026-01-24 22:19:30 +05:30

27 lines
457 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Enable standalone output for Docker
output: "standalone",
// Image optimization
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "localhost",
},
{
protocol: "http",
hostname: "127.0.0.1",
},
],
},
};
export default nextConfig;