thgh / rollup-plugin-scss

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

How to minify? #30

Open frederikhors opened 5 years ago

frederikhors commented 5 years ago

Sorry for the maybe silly question: I'm learning day by day.

How to minify my .scss in the final .css?

Matrixbirds commented 5 years ago

if you mean compressed, you could see this project used node-sass, you could passed options

      scss({
        importer: tildeImporter,
        outputStyle: "compressed",
      }),