thgh / rollup-plugin-scss

Rollup and compile multiple .scss, .sass and .css imports
MIT License
134 stars 47 forks source link

How to add '; ' after each style #108

Open takegine opened 1 year ago

takegine commented 1 year ago

https://github.com/sass/sass/issues/3517

thanks for your plugin, i am using it.

and i meet this question, can you help me?

thgh commented 1 year ago

Hehe, it's probably not going to solve your actual problem, but you could try this:

plugins: [{ sass({ processor:(css)=>css.replaceAll("}", ";}") }) }]