rollup-plugin-purgecss icon indicating copy to clipboard operation
rollup-plugin-purgecss copied to clipboard

Question: Why is rollup-plugin-purgecss outputting js?

Open ghost opened this issue 6 years ago • 0 comments

Why does rollup-plugin-purgecss write js to the purged css files? The purged css is wrapped in export default "...".

Expected result

/* main.css */

.div{background-color:black} ....

Actual behaviour

/* main.css */

export default ".div{background-color:black}...."

ghost avatar Dec 19 '19 13:12 ghost