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 25675c2 commit e8300aeCopy full SHA for e8300ae
src/pages/[product]/llms-full.txt.ts
@@ -3,7 +3,8 @@ import { getCollection } from "astro:content";
3
4
export async function getStaticPaths() {
5
const products = await getCollection("products", (p) => {
6
- return p.data.product.group?.toLowerCase() === "developer platform";
+ console.log(p.data.product.group);
7
+ return p.data.product.group;
8
});
9
10
return products.map((entry) => {
0 commit comments