first commit
This commit is contained in:
21
astro.config.mjs
Normal file
21
astro.config.mjs
Normal file
@@ -0,0 +1,21 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import preact from "@astrojs/preact";
|
||||
import sitemap from "@astrojs/sitemap"
|
||||
import icon from "astro-icon";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: "https://efeele.dev",
|
||||
integrations: [preact(), icon(), sitemap()],
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
},
|
||||
markdown: {
|
||||
shikiConfig: {
|
||||
theme: 'github-dark'
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user