From d739d89caaa28334c4d6fec9585a50d560221bd1 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:57:50 +0100 Subject: [PATCH] manually set basePath in `next.config.mjs` (#109) --- frontend/next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index a2529f34..108da034 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -19,7 +19,7 @@ const nextConfig = { }, output: "export", - basePath: `/${process.env.BASE_PATH}`, + basePath: `/ProxmoxVE`, }; export default nextConfig;