From 0d7243019885a2ef51e32324d9d62e1e0841429f Mon Sep 17 00:00:00 2001 From: millianlmx Date: Sat, 11 Jul 2026 23:18:01 +0200 Subject: [PATCH] feat(admin-web): enable standalone output for Docker deployment --- admin-web/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin-web/next.config.ts b/admin-web/next.config.ts index e9ffa30..68a6c64 100644 --- a/admin-web/next.config.ts +++ b/admin-web/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "standalone", }; export default nextConfig;