Mirror of
0
fork

Configure Feed

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

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
c4077e5b b1d8afdf

+5 -2
+1 -1
starlight/package.json
··· 15 15 "sharp": "^0.32.5", 16 16 "starlight-videos": "^0.1.0" 17 17 } 18 - } 18 + }
+4 -1
starlight/src/content.config.ts
··· 4 4 import { videosSchema } from "starlight-videos/schemas"; 5 5 6 6 export const collections = { 7 - docs: defineCollection({ loader: docsLoader(), schema: docsSchema({ extend: videosSchema }) }), 7 + docs: defineCollection({ 8 + loader: docsLoader(), 9 + schema: docsSchema({ extend: videosSchema }), 10 + }), 8 11 };