Remove galaxy theme due to alignment errors.

- Disable galaxy theme in plugin settings
- Remove galaxy theme from package.json

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-09 11:10:51 +08:00
parent 8898318b1f
commit 7259f33e63
2 changed files with 2 additions and 5 deletions

View File

@@ -1,8 +1,6 @@
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightThemeGalaxy from 'starlight-theme-galaxy';
import mdx from '@astrojs/mdx';
// https://astro.build/config
@@ -33,7 +31,7 @@ export default defineConfig({
},
],
sidebar: [],
plugins: [starlightThemeGalaxy()],
plugins: [],
}),
mdx(),
],