diff options
Diffstat (limited to 'apps/website/astro.config.ts')
-rw-r--r-- | apps/website/astro.config.ts | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts index 98351a4..76dbdbe 100644 --- a/apps/website/astro.config.ts +++ b/apps/website/astro.config.ts @@ -1,7 +1,19 @@ import tailwind from '@astrojs/tailwind'; import { defineConfig } from 'astro/config'; +// @ts-ignore - Tailwind doesn't have types for this yet +import postcssNesting from "tailwindcss/nesting"; + // https://astro.build/config export default defineConfig({ - integrations: [tailwind()] + integrations: [tailwind()], + vite: { + css: { + postcss: { + plugins: [ + postcssNesting, + ] + } + } + } }); |