initial commit

This commit is contained in:
grassblock 2025-05-01 16:53:18 +08:00
commit 61511ed28c
28 changed files with 5210 additions and 0 deletions

15
astro.config.mjs Normal file
View file

@ -0,0 +1,15 @@
import { defineConfig } from 'astro/config';
export default defineConfig({
site: 'https://terminal-blog.example.com',
trailingSlash: 'ignore',
build: {
format: 'directory'
},
markdown: {
shikiConfig: {
theme: 'nord',
wrap: true
}
}
});