This commit is contained in:
도로롱
2025-10-23 20:51:28 +09:00
commit e6ab4973c0
44 changed files with 7642 additions and 0 deletions

9
astro.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
export default defineConfig({
site: "https://damhw.ee",
integrations: [mdx(), sitemap(), tailwind()],
});