feat: enable standalone output mode in Next.js configuration

This commit is contained in:
Mathis HERRIOT
2026-01-08 15:32:55 +01:00
parent 3828f170e2
commit 6254c136d1

View File

@@ -1,8 +1,9 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
reactCompiler: true, reactCompiler: true,
output: 'standalone',
}; };
export default nextConfig; export default nextConfig;