This commit is contained in:
2026-06-18 10:36:41 +08:00 Unverified
parent 1a862adddc
commit 7c3679e885
41 changed files with 10544 additions and 163 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
export default defineConfig({
site: 'https://blog.biss.click',
output: 'static',
outDir: './public',
publicDir: './static',
integrations: [sitemap()],
markdown: {
shikiConfig: {
theme: 'github-dark',
wrap: true,
langAlias: {
BASH: 'bash',
YAML: 'yaml',
},
},
},
});