66e8ae3bee
* add mdx since md is deprecated now * rename .md -> .mdx * fix component import * yarn format
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [mdx(), tailwind()],
|
|
});
|