- basePath /dow-prod-tracker, DB name dow_prod_tracker - docker-compose: name: dow-prod-tracker (volume isolation on shared server), ports 3002/5492 - OMG webhook env vars (secret + insecure toggle) - NEXT_PUBLIC_AUTH_ENTRA_ENABLED feature flag (MVP uses local auth) - Dow logo at public/navbar-logo.png - apache/hp-prod-tracker.conf → apache/dow-prod-tracker.conf - Text rebrand across README, SETUP, CLAUDE.md, docs, UI labels Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const basePath = "/dow-prod-tracker";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
basePath,
|
|
env: {
|
|
NEXT_PUBLIC_BASE_PATH: basePath,
|
|
},
|
|
experimental: {
|
|
// Allow large video uploads (up to 500MB) through the proxy
|
|
proxyClientMaxBodySize: "500mb",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|