Skip to content

Commit b966f42

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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+
return p.data.product.group;
77
});
88

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

0 commit comments

Comments
 (0)