🎉 Initial Commit
This commit is contained in:
46
astro.config.mjs
Normal file
46
astro.config.mjs
Normal 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" },
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user