hp-prod-tracker/next.config.ts
Leivur Djurhuus ffbc5a2e31 Add standalone output for Docker deployment, gitignore deploy dir
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 16:49:58 -05:00

11 lines
254 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
experimental: {
// Allow large video uploads (up to 500MB) through the proxy
proxyClientMaxBodySize: "500mb",
},
};
export default nextConfig;