cf621340b0
* fix miss a head when the templaterender has a promise * fix * add some test * test files move to md directory * fix add * delect file --------- Co-authored-by: wuls <linsheng.wu@beantechs.com>
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
build: {
|
|
format: 'file'
|
|
},
|
|
integrations: [mdx()]
|
|
});
|