fix: add basePath to config

This commit is contained in:
Stevan Freeborn
2023-04-10 00:04:49 -05:00
parent d85a44627c
commit 99f84fa903
4 changed files with 10 additions and 4 deletions
+4 -1
View File
@@ -50,7 +50,10 @@ function TreeNode({ doc }: { doc: Doc }) {
)}
</div>
) : (
<a href={`#${doc.title}`} className={styles.link}>
<a
href={`#${doc.title.toLowerCase()}`}
className={styles.link}
>
{doc.title}
</a>
)}