This commit is contained in:
2025-11-30 19:50:46 +01:00
parent b40ccbb983
commit 9ccb7736db
19 changed files with 8450 additions and 0 deletions

15
astro.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
// @ts-check
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
site: "https://vxheaven.cc",
markdown: {
shikiConfig: {
theme: "kanagawa-dragon",
},
},
});