From 4a94f4c3f338d5c59abe1981036fa9acc62fe156 Mon Sep 17 00:00:00 2001 From: "Nelo-T. Wallus" Date: Fri, 22 Aug 2025 15:12:51 +0200 Subject: [PATCH] Fix PAGES_BASE for main Signed-off-by: Nelo-T. Wallus Signed-off-by: Nelo-T. Wallus --- .vitepress/config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index c743fd0..2371fb5 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -8,7 +8,7 @@ export default withMermaid({ ['link', { rel: 'icon', href: '/favicon.ico' }] ], - base: process.env.PAGES_BASE ? '/' + process.env.PAGES_BASE : '', + base: typeof process.env.PAGES_BASE !== 'undefined' ? '/' + process.env.PAGES_BASE : '', description: "Platform Mesh - Building upon the Kubernetes API & Resource Model",