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