From fac895dc1483bcf8089a99a0c4dbb20da90dcdf0 Mon Sep 17 00:00:00 2001 From: Sam <54530346+asylumexp@users.noreply.github.com> Date: Thu, 9 Jan 2025 17:23:28 +1000 Subject: [PATCH] Change frontend base path to /Proxmox --- frontend/next.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index 108da034e..7f76aed3a 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -15,11 +15,11 @@ const nextConfig = { }, env: { - BASE_PATH: "ProxmoxVE", + BASE_PATH: "Proxmox", }, output: "export", - basePath: `/ProxmoxVE`, + basePath: `/Proxmox`, }; export default nextConfig;