mirror of
https://github.com/thiloho/thiloho.github.io.git
synced 2025-11-22 02:11:35 +01:00
Turn .mjs files into .ts files
This commit is contained in:
22
astro.config.ts
Normal file
22
astro.config.ts
Normal 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",
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user