1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import tailwind from '@astrojs/tailwind'; import { defineConfig } from 'astro/config'; import postcssNesting from 'tailwindcss/nesting'; // https://astro.build/config export default defineConfig({ integrations: [tailwind()], vite: { css: { postcss: { plugins: [postcssNesting], }, }, }, });