📝 Solar Network basis

This commit is contained in:
2025-01-20 20:15:30 +08:00
parent b09eef4d23
commit 225b1ed8f6
10 changed files with 240 additions and 71 deletions

View File

@@ -1,28 +1,32 @@
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'My Docs',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Example Guide', slug: 'guides/example' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
integrations: [
starlight({
title: "Goatpedia",
defaultLocale: "root",
locales: {
root: {
label: "English",
lang: "en",
},
"zh-cn": {
label: "简体中文",
lang: "zh-CN",
},
},
social: {
github: "https://github.com/Solsynth",
},
sidebar: [
{
label: 'Solar Network',
autogenerate: { directory: 'solar-network' },
},
],
}),
],
});