summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/postcss.config.js
blob: 7cffbeb55070da655664577b998db1df4f3b3d18 (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: {},
  },
};