blob: 393df1a4d5c81c591ba1bf2ff413cb392852226d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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()],
});
|