mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-05-24 04:14:58 +00:00
Add MDX support
Start writing a blog and clean up/hide tester stuff
This commit is contained in:
parent
18729faff4
commit
54e79beb30
18 changed files with 870 additions and 43 deletions
|
@ -1,14 +1,16 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
|
||||
import syntaxTheme from "./syntax-theme.json";
|
||||
|
||||
import mdx from "@astrojs/mdx";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
output: "static",
|
||||
markdown: {
|
||||
syntaxHighlight: "shiki",
|
||||
shikiConfig: {
|
||||
theme: syntaxTheme,
|
||||
},
|
||||
},
|
||||
});
|
||||
output: "static",
|
||||
markdown: {
|
||||
syntaxHighlight: "shiki",
|
||||
shikiConfig: {
|
||||
theme: syntaxTheme
|
||||
}
|
||||
},
|
||||
integrations: [mdx()]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue