14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import rehypeKatex from 'rehype-katex';
|
|
import remarkMath from 'remark-math';
|
|
|
|
export default defineConfig({
|
|
site: 'https://mornie.org',
|
|
markdown: {
|
|
remarkPlugins: [remarkMath],
|
|
rehypePlugins: [rehypeKatex],
|
|
shikiConfig: {
|
|
theme: 'monokai',
|
|
},
|
|
},
|
|
});
|