Standard.site landing page built in Next.js
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Skip non-docs hrefs in getAllDocSlugs to fix build

+1
+1
app/data/docs-nav.ts
··· 43 43 44 44 DOCS_NAV.forEach((section) => { 45 45 section.items.forEach((item) => { 46 + if (!item.href.startsWith('/docs/')) return 46 47 const slug = item.href.replace('/docs/', '').split('/') 47 48 slugs.push(slug) 48 49 })