From fb43a8ee9c72cfac05ff916947091e5dceeacbd9 Mon Sep 17 00:00:00 2001 From: Andrej Spielmann Date: Thu, 26 Mar 2026 15:48:18 +0100 Subject: [PATCH] fix: add standalone output config for Docker build --- frontend/next.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index e9ffa30..18f9cc7 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: 'standalone', + images: { + unoptimized: true, + }, }; export default nextConfig;