astro/packages/integrations/mdx/test/fixtures/astro-content-css/astro.config.mjs
wulinsheng123 cf621340b0
Bug 6672 (#7062)
* 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>
2023-05-30 08:05:48 -04:00

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()]
});