From 2842963ebf0914ad2d5848d38c5ee3050604b17b Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 16 Sep 2025 10:25:57 +0200 Subject: [PATCH] Change output configuration from 'output' to 'export' --- 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 596137d..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: 'output', + output: 'export', }; export default nextConfig;