From 8449958b74dd4881204d53be62ee183712f32179 Mon Sep 17 00:00:00 2001 From: Benjamin Dehli Date: Sat, 25 May 2024 22:05:43 +0200 Subject: [PATCH] Adjust build config for Next --- next.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..96b07ce 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + basePath: "/DecentEditor", + output: "export" +}; export default nextConfig;