aboutsummaryrefslogtreecommitdiff
path: root/apps/website/astro.config.ts
blob: 2e8c40c270010b3ac61f8539df7b95b31a940965 (plain)
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],
			},
		},
	},
});