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

View File

@@ -13,8 +13,7 @@
"@astrojs/mdx": "^4.3.12", "@astrojs/mdx": "^4.3.12",
"@astrojs/starlight": "^0.37.0", "@astrojs/starlight": "^0.37.0",
"astro": "^5.6.1", "astro": "^5.6.1",
"sharp": "^0.34.2", "sharp": "^0.34.2"
"starlight-theme-galaxy": "^0.5.2"
}, },
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a" "packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
} }