Playing around with options for base structure and navigation

This commit is contained in:
2025-07-03 23:50:20 -07:00
parent 65e05066ea
commit d515e581b5
26 changed files with 1075 additions and 398 deletions

View File

@@ -2,10 +2,17 @@
import { defineConfig } from 'astro/config';
import rehypeAstroRelativeMarkdownLinks from "astro-rehype-relative-markdown-links";
import tailwindcss from "@tailwindcss/vite";
// https://astro.build/config
export default defineConfig({
integrations: [],
markdown: {
rehypePlugins: [rehypeAstroRelativeMarkdownLinks],
},
});
integrations: [],
markdown: {
rehypePlugins: [rehypeAstroRelativeMarkdownLinks],
},
vite: {
plugins: [tailwindcss()],
},
});