AppView in a box as a Vite plugin thing hatk.dev
2
fork

Configure Feed

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

at 2d3b8a83bc3146a1aaa58a6dfcf515d52cad9a2d 7 lines 266 B view raw
1import { defineCollection } from 'astro:content' 2import { docsLoader } from '@astrojs/starlight/loaders' 3import { docsSchema } from '@astrojs/starlight/schema' 4 5export const collections = { 6 docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), 7}