Closed thariddler closed 6 years ago
Hello. I have settings
module.exports = { plugins: [ tailwindcss('./tailwind.js'), require('autoprefixer')(), purgecss({ content: [ './src/components/**/*.vue', './src/pages/**/*.vue' ] }) ] }
After I add purgecss Tailwind stops working. Using Vue.js webpack starter.
purgecss
So this was wrong path. I needed this
'./src/**/*.html', './src/**/*.vue'
:+1:
Hello. I have settings
After I add
purgecss
Tailwind stops working. Using Vue.js webpack starter.