mirror of
https://github.com/thiloho/thiloho.github.io.git
synced 2025-11-22 02:11:35 +01:00
Initialize project with general functionality
This commit is contained in:
20
astro.config.mjs
Normal file
20
astro.config.mjs
Normal file
@@ -0,0 +1,20 @@
|
||||
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],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user