Skip to content

Commit ffc94c8

Browse files
committed
Fix API overview link
1 parent 91d8789 commit ffc94c8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/pages/apidocs/index.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ const headings = [
1313
text: "Web APIs",
1414
},
1515
];
16-
1716
---
1817

1918
<StarlightPage frontmatter={frontmatter} headings={headings}>
@@ -22,7 +21,7 @@ const headings = [
2221
{
2322
apiModules.map(({ moduleName, link }) => (
2423
<li>
25-
<a href={link}>{moduleName}</a>
24+
<a href={`${import.meta.env.BASE_URL}/${link}`}>{moduleName}</a>
2625
</li>
2726
))
2827
}

0 commit comments

Comments
 (0)