From 6254c136d167956ed2b4a0c803e29adbc36b9414 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:32:55 +0100 Subject: [PATCH] feat: enable standalone output mode in Next.js configuration --- frontend/next.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 66b0998..6533f2f 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,8 +1,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ - reactCompiler: true, + /* config options here */ + reactCompiler: true, + output: 'standalone', }; export default nextConfig;