From b264a5f25ceadf67b5d85c954858f913bdc6812d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 27 Jun 2026 20:37:19 +0000 Subject: [PATCH] Fix double slash in URLs from trailing-slash base path import.meta.env.BASE_URL includes a trailing slash (e.g. "/tag-notes/"), and Solid Router concatenates base + path directly, producing URLs like "/tag-notes//food". Strip the trailing slash before passing it as the router base. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01K3Q361t53QdxgaV8nHSayT --- pwa/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwa/src/App.tsx b/pwa/src/App.tsx index 112518d..98eeb54 100644 --- a/pwa/src/App.tsx +++ b/pwa/src/App.tsx @@ -20,7 +20,7 @@ function Shell(props: { children?: JSX.Element }) { function App() { return ( - + } />