From 76b6164922556249b4e87d36fe0b7de0c9538410 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 23 Apr 2024 03:26:08 +0100 Subject: [PATCH] fix --- next.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..608f1be 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "standalone", +}; export default nextConfig;