Turn .mjs files into .ts files

This commit is contained in:
thiloho
2025-04-27 00:09:52 +02:00
parent 89e5dbf5ec
commit 04b1282f12
4 changed files with 44 additions and 4 deletions

22
astro.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import { defineConfig } from "astro/config";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
site: "https://thiloho.github.io",
trailingSlash: "never",
prefetch: {
prefetchAll: true,
},
vite: {
plugins: [tailwindcss()],
},
markdown: {
shikiConfig: {
theme: "github-dark",
},
},
});