2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-10-18 06:22:48 -07:00
|
|
|
import mdx from '@astrojs/mdx';
|
2022-03-18 15:35:45 -07:00
|
|
|
import tailwind from '@astrojs/tailwind';
|
2021-08-23 14:07:03 -07:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-10-18 06:22:48 -07:00
|
|
|
integrations: [mdx(), tailwind()],
|
2021-08-23 14:07:03 -07:00
|
|
|
});
|