feat(proofs): some proofs

This commit is contained in:
Barrett Ruth 2025-06-22 14:22:12 -05:00
parent a5f0d6c479
commit f0c1c15002
5 changed files with 198 additions and 24 deletions

View file

@ -2,6 +2,7 @@ import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
import path from "path";
export default defineConfig({
build: {
@ -13,6 +14,13 @@ export default defineConfig({
rehypePlugins: [rehypeKatex],
}),
],
vite: {
resolve: {
alias: {
"@components": path.resolve(".", "src/components"),
},
},
},
markdown: {
shikiConfig: {
theme: "github-light",