2025-12-19 01:18:25 +05:30
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-12-24 06:39:13 +05:30
|
|
|
// Enable standalone output for Docker
|
|
|
|
|
output: "standalone",
|
|
|
|
|
|
|
|
|
|
// Image optimization
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
2026-08-04 11:30:48 +05:30
|
|
|
{ protocol: "https", hostname: "*.contabostorage.com" },
|
|
|
|
|
{ protocol: "https", hostname: "*.amazonaws.com" },
|
|
|
|
|
{ protocol: "https", hostname: "*.digitaloceanspaces.com" },
|
2025-12-24 06:39:13 +05:30
|
|
|
],
|
|
|
|
|
},
|
2025-12-19 01:18:25 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|