From 11197af3e155bcc0ebc6dc9a18531764de87df45 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Wed, 6 Nov 2024 22:26:26 +0100 Subject: [PATCH] force static base path --- 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 96d5758f..5407a9c5 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;