From 59982e763fa517675eb3569f83802f26871d4c03 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 16 Sep 2025 13:57:06 +0200 Subject: [PATCH] Update next.config.mjs --- nextjs/spa/next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextjs/spa/next.config.mjs b/nextjs/spa/next.config.mjs index 4e18a96..debd939 100644 --- a/nextjs/spa/next.config.mjs +++ b/nextjs/spa/next.config.mjs @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: 'standalone', + output: 'export', }; export default nextConfig;