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;