Files
frontend/next.config.ts

27 lines
457 B
TypeScript
Raw Normal View History

2025-12-19 01:19:18 +05:30
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Enable standalone output for Docker
output: "standalone",
// Image optimization
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
2026-01-24 22:19:30 +05:30
{
protocol: "http",
hostname: "localhost",
},
{
protocol: "http",
hostname: "127.0.0.1",
},
],
},
2025-12-19 01:19:18 +05:30
};
export default nextConfig;