redesign c:

This commit is contained in:
zackartz 2024-05-28 17:46:33 -04:00
parent 4ae31ee714
commit f50572713b
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
19 changed files with 13891 additions and 1501 deletions

View file

@ -3,13 +3,14 @@ import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import syntaxTheme from "./syntax-theme.json";
// https://astro.build/config
export default defineConfig({
site: "https://zackmyers.io",
markdown: {
shikiConfig: {
theme: "catppuccin-frappe",
theme: syntaxTheme,
},
},
integrations: [mdx(), sitemap(), tailwind()],