« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/url-spec.js2
-rw-r--r--src/util/urls.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/url-spec.js b/src/url-spec.js
index a36bb0e..d4de616 100644
--- a/src/url-spec.js
+++ b/src/url-spec.js
@@ -22,7 +22,7 @@ const urlSpec = {
             root: '',
             path: '<>',
 
-            home: '',
+            home: '/',
 
             album: 'album/<>/',
             albumCommentary: 'commentary/album/<>/',
diff --git a/src/util/urls.js b/src/util/urls.js
index 5f1d6eb..12a1651 100644
--- a/src/util/urls.js
+++ b/src/util/urls.js
@@ -38,7 +38,7 @@ export function generateURLs(urlSpec) {
         const rebasePrefix = '../'.repeat((fromGroup.prefix || '').split('/').filter(Boolean).length);
 
         const pathHelper = (toPath, toGroup) => {
-            let target = toPath;
+            let target = (toPath === '/' ? '' : toPath);
 
             let argIndex = 0;
             target = target.replaceAll('<>', () => `<${argIndex++}>`);