Initial commit

This commit is contained in:
tiff 2025-01-04 13:00:09 -05:00 committed by GitHub
commit f78314dc2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 9898 additions and 0 deletions

22
astro.config.mjs Normal file
View file

@ -0,0 +1,22 @@
// @ts-check
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import { SITE_URL } from "./src/consts";
// https://astro.build/config
export default defineConfig({
site: SITE_URL,
integrations: [mdx(), sitemap(), tailwind()],
markdown: {
shikiConfig: {
themes: {
light: "catppuccin-latte",
dark: "catppuccin-mocha",
},
},
},
});