n-link/n-link-core/postcss.config.js
2020-10-06 10:48:41 -04:00

11 lines
267 B
JavaScript

module.exports = {
plugins: {
tailwindcss: {},
'vue-cli-plugin-tailwind/purgecss': {
whitelistPatternsChildren: [/^el-/],
content: ['./public/**/*.html', './src/**/*.vue', '../n-link-core/components/**/*.vue'],
},
autoprefixer: {}
}
}