postcss-selector-remover
v1.0.0
Published
Removes specified CSS selectors through PostCSS
Downloads
2
Readme
postcss-selector-remover
Have you ever had some NPM lib adding global styles to your whole site? This is the remedy.
Just specify the selectors and they will be removed from your CSS when compiling.
module.exports = () => ({
plugins: {
'postcss-selector-remover': {
selectors: [ '.v-application p' ]
}
}
});