mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-06-20 23:35:06 +08:00
8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
|
|
import { defineCollection } from "astro:content";
|
||
|
|
import { docsLoader } from "@astrojs/starlight/loaders";
|
||
|
|
import { docsSchema } from "@astrojs/starlight/schema";
|
||
|
|
|
||
|
|
export const collections = {
|
||
|
|
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
|
||
|
|
};
|