Remove galaxy theme due to ui alignment errors

- Disable galaxy theme from astro.config.mjs plugins
- Remove galaxy theme dep from package.json

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2025-12-09 11:17:07 +08:00
parent 8898318b1f
commit 26713548a1
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(),
],