18 lines
No EOL
359 B
JavaScript
18 lines
No EOL
359 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
export default defineConfig({
|
|
markdown: {
|
|
syntaxHighlight: 'shiki',
|
|
shikiConfig: {
|
|
theme: 'css-variables'
|
|
}
|
|
},
|
|
integrations: [
|
|
mdx({
|
|
// Markdown config now ignored
|
|
extendMarkdownConfig: true
|
|
// No `remarkPlugins` applied
|
|
})
|
|
]
|
|
}); |