Files
adminpanel/next.config.ts

19 lines
309 B
TypeScript
Raw Permalink Normal View History

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