Add standalone output for Docker deployment, gitignore deploy dir

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Leivur Djurhuus 2026-04-06 16:49:58 -05:00
parent fa55dfc25f
commit ffbc5a2e31
2 changed files with 4 additions and 0 deletions

3
.gitignore vendored
View file

@ -25,6 +25,9 @@
# database backups
backup_*.sql
# deployment repo (separate git repo for Bitbucket)
/deploy/
# debug
npm-debug.log*
yarn-debug.log*

View file

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