Dane's personal website
dane.computer
1import { defineConfig, sharpImageService } from "astro/config";
2import sitemap from "@astrojs/sitemap";
3import UnoCSS from "unocss/astro";
4
5export default defineConfig({
6 site: "https://dane.computer",
7 image: {
8 service: sharpImageService(),
9 },
10 integrations: [
11 UnoCSS({
12 injectReset: true,
13 }),
14 sitemap(),
15 ],
16 markdown: {
17 shikiConfig: {
18 theme: "material-theme-palenight",
19 },
20 },
21});