feat(proofs): some proofs
This commit is contained in:
parent
a5f0d6c479
commit
f0c1c15002
5 changed files with 198 additions and 24 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue