summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/postcss.config.js
blob: c3a002bfe43456c1bc2e14254b7350b21d46212b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const path = require('path');

module.exports = {
	plugins: {
		tailwindcss: {
			config: path.join(__dirname, 'tailwind.config.js'), // update this if your path differs!
		},
		autoprefixer: {},
	},
};