From 89657012fdfe4a04398616df4599651f9c4f8ba8 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Wed, 2 Apr 2025 18:12:37 +0100 Subject: [PATCH] Adding standalone server] --- frontend/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index e9ffa30..225e495 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: 'standalone', }; export default nextConfig;