aboutsummaryrefslogtreecommitdiff
path: root/apps/website/astro.config.ts
blob: 76dbdbef2678b41c4ec878e72b001995945451b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()],
	vite: {
		css: {
			postcss: {
				plugins: [
					postcssNesting,
				]
			}
		}
	}
});