aboutsummaryrefslogtreecommitdiff
path: root/postcss.config.js
blob: 1105d3a7565cd5881b8a4fc4f87f30283d4e4375 (plain)
1
2
3
4
5
6
7
8
9
import tailwindcss from "tailwindcss";
import autoprefixer from "autoprefixer";

export default {
	plugins: [
		tailwindcss(),
		autoprefixer(),
	]
};