🎉 Initial Commit

This commit is contained in:
2025-12-07 01:53:10 +08:00
commit 483a4ffdda
23 changed files with 1519 additions and 0 deletions

46
astro.config.mjs Normal file
View File

@@ -0,0 +1,46 @@
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: 'https://kb.solsynth.dev',
integrations: [
starlight({
title: "Suki",
description:
"Solsynth's products kownledge base, including Solar Network, GoatCraft and more.",
defaultLocale: "zh-cn",
locales: {
en: {
label: "English",
},
"zh-cn": {
label: "简体中文",
lang: "zh-CN",
},
},
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com/Solsynth",
},
],
sidebar: [
{
label: "Solar Network",
autogenerate: { directory: "solar-network" },
},
{
label: "GoatCraft",
autogenerate: { directory: "goatcraft" },
},
{
label: "Solsynth Works",
autogenerate: { directory: "standards" },
},
],
}),
],
});