From ffbc5a2e31cae3d8af56e0c7d94a3fc2d2b08a3e Mon Sep 17 00:00:00 2001 From: Leivur Djurhuus Date: Mon, 6 Apr 2026 16:49:58 -0500 Subject: [PATCH] Add standalone output for Docker deployment, gitignore deploy dir Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 3 +++ next.config.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 13f88a4..9af7beb 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,9 @@ # database backups backup_*.sql +# deployment repo (separate git repo for Bitbucket) +/deploy/ + # debug npm-debug.log* yarn-debug.log* diff --git a/next.config.ts b/next.config.ts index 12afc14..f14164e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -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",