blob: 717d379c01cd016e757e89a2763ab3564dbebfdd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import mdx from '@astrojs/mdx';
export default {
site: 'https://mdx-is-neat.com/',
markdown: {
syntaxHighlight: false,
},
integrations: [mdx()],
vite: {
build: {
// Enabling sourcemap may crash the build when using `import.meta.env.UNKNOWN_VAR`
// https://github.com/withastro/astro/issues/9012
sourcemap: true,
},
},
}
|