We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6376df commit d859849Copy full SHA for d859849
src/pages/reference/[...id].astro
@@ -9,6 +9,7 @@ export async function getStaticPaths() {
9
const referenceEntries = await getCollectionInDefaultLocale("reference");
10
11
return referenceEntries
12
+ // @ts-ignore
13
.filter((entry) => entry.module !== 'Constants')
14
.map((entry) => ({
15
params: {
src/pages/reference/constants/[...id].astro
.filter((entry) => entry.module === 'Constants')
0 commit comments