aboutsummaryrefslogtreecommitdiff
path: root/postcss.config.js
blob: 36017cf06668328d88ec6d74c2bb86f73ffa385a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import tailwindcss from 'tailwindcss'
import autoprefixer from 'autoprefixer'

const config = {
	plugins: [
		//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
		tailwindcss(),
		//But others, like autoprefixer, need to run after,
		autoprefixer,
	],
}

export default config