diff options
Diffstat (limited to 'examples/with-tailwindcss/astro.config.mjs')
-rw-r--r-- | examples/with-tailwindcss/astro.config.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/with-tailwindcss/astro.config.mjs b/examples/with-tailwindcss/astro.config.mjs index a024b64b4..4ad396807 100644 --- a/examples/with-tailwindcss/astro.config.mjs +++ b/examples/with-tailwindcss/astro.config.mjs @@ -1,7 +1,7 @@ import { defineConfig } from 'astro/config'; +import tailwind from '@astrojs/tailwind'; // https://astro.build/config export default defineConfig({ - // Enable the Preact renderer to support Preact JSX components. - renderers: ['@astrojs/renderer-preact'], + integrations: [tailwind()], }); |