From 091833c7fda148a9241e9e94a6169a232c6784e6 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 11 Dec 2025 12:17:27 -0500 Subject: [PATCH] fix: add standalone output for Docker deployment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Required for Next.js standalone build in Docker container. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- next.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 5501ef9..8f9dc9b 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,12 +1,12 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'standalone', typescript: { ignoreBuildErrors: true, }, images: { unoptimized: true, }, - } -export default nextConfig \ No newline at end of file +export default nextConfig