n-link/n-link-core/postcss.config.js

11 lines
267 B
JavaScript
Raw Permalink Normal View History

2020-10-02 20:17:55 +00:00
module.exports = {
plugins: {
tailwindcss: {},
'vue-cli-plugin-tailwind/purgecss': {
whitelistPatternsChildren: [/^el-/],
2020-10-06 14:48:41 +00:00
content: ['./public/**/*.html', './src/**/*.vue', '../n-link-core/components/**/*.vue'],
2020-10-02 20:17:55 +00:00
},
autoprefixer: {}
}
}