Skip to content

Commit e8300ae

Browse files
Remove unnecessary condition and render llms-full.txt for all products
1 parent 25675c2 commit e8300ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/[product]/llms-full.txt.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { getCollection } from "astro:content";
33

44
export async function getStaticPaths() {
55
const products = await getCollection("products", (p) => {
6-
return p.data.product.group?.toLowerCase() === "developer platform";
6+
console.log(p.data.product.group);
7+
return p.data.product.group;
78
});
89

910
return products.map((entry) => {

0 commit comments

Comments
 (0)