mirror of
https://github.com/thiloho/thiloho.github.io.git
synced 2025-11-22 02:11:35 +01:00
21 lines
393 B
JavaScript
21 lines
393 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { remarkModifiedTime } from "./remark-modified-time.mjs";
|
|
|
|
export default defineConfig({
|
|
prefetch: {
|
|
prefetchAll: true,
|
|
},
|
|
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
|
|
markdown: {
|
|
shikiConfig: {
|
|
theme: "github-dark",
|
|
},
|
|
remarkPlugins: [remarkModifiedTime],
|
|
},
|
|
});
|