From 2c76f70ac7b1bd5eef1e83197da23e09854c1e28 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 14 Mar 2026 00:03:24 -0700 Subject: [PATCH] Config: Enable standalone output for Docker --- next.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 next.config.mjs diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..4e18a96 --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: 'standalone', +}; + +export default nextConfig;