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