From b3aece1e41ec00111f469ac0b80a3a7c3ae11654 Mon Sep 17 00:00:00 2001 From: "Ema P." Date: Wed, 10 Dec 2025 10:52:36 -0500 Subject: [PATCH] Adding next.config.js for standalone. --- next.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..f307dcb --- /dev/null +++ b/next.config.js @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: 'standalone', +}; + +module.exports = nextConfig; \ No newline at end of file