Skip to content

Commit

Permalink
Fix API overview link
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Nov 23, 2024
1 parent 91d8789 commit ffc94c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/pages/apidocs/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const headings = [
text: "Web APIs",
},
];
---

<StarlightPage frontmatter={frontmatter} headings={headings}>
Expand All @@ -22,7 +21,7 @@ const headings = [
{
apiModules.map(({ moduleName, link }) => (
<li>
<a href={link}>{moduleName}</a>
<a href={`${import.meta.env.BASE_URL}/${link}`}>{moduleName}</a>
</li>
))
}
Expand Down

0 comments on commit ffc94c8

Please sign in to comment.