diff options
Diffstat (limited to 'examples/with-tailwindcss/astro.config.mjs')
-rw-r--r-- | examples/with-tailwindcss/astro.config.mjs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/with-tailwindcss/astro.config.mjs b/examples/with-tailwindcss/astro.config.mjs index 4ad396807..393df1a4d 100644 --- a/examples/with-tailwindcss/astro.config.mjs +++ b/examples/with-tailwindcss/astro.config.mjs @@ -1,7 +1,8 @@ import { defineConfig } from 'astro/config'; +import mdx from '@astrojs/mdx'; import tailwind from '@astrojs/tailwind'; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()], + integrations: [mdx(), tailwind()], }); |