blob: 911cb3a99881828a8cabdf6faac827f048e34e83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import mdx from '@astrojs/mdx';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [mdx()],
experimental: {
contentIntellisense: true
}
});
|