mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-12 06:59:30 +08:00

* init docs * add few categories * add more * update home * add blog * update favicon * fix few links and * untouch * untouch more * add some icons * add icons * move ggetting started at the top and collapse the rest * actually collapse * format * remove includes * more format * remove includes * move assets * add i18n * fix i18n * formatting * order * Prevent sidebar from making the page shake during load * Prevent sidebar from making the page shake during load * organize docs * fix link * expand a bit * add credits page * update all contributors file * remove underlines * add alternative * use html * lets get the first success build * add latest entry * remove example file * fix examples * more fixes * fix grammar * grammar * remove dupes * fix link * grammar * typo * typo * typo * Logo update. Minor changes. * update changelog * update changelog * rabbit is right --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
11 lines
372 B
TypeScript
11 lines
372 B
TypeScript
import { defineCollection } from "astro:content";
|
|
import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";
|
|
import { blogSchema } from "starlight-blog/schema";
|
|
|
|
export const collections = {
|
|
i18n: defineCollection({ type: "data", schema: i18nSchema() }),
|
|
docs: defineCollection({
|
|
schema: docsSchema({ extend: (context) => blogSchema(context) }),
|
|
}),
|
|
};
|