From 92e3de73405d8e6c4bce7742a6edc2c630a2a535 Mon Sep 17 00:00:00 2001 From: jamesratcliffe101 Date: Mon, 1 Jun 2026 14:39:28 +0100 Subject: [PATCH] updated next config to output standalone --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..68a6c64 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "standalone", }; export default nextConfig;