Keep @import at the end of CSS after SCSS compile
We need to put @import at the end of my CSS file. For example: SCSS: @import "reset.css"; Body { font: 0.8em arial; } @import "customation.css" compile to: @import "reset.css";body{font: 0.8em arial;}@import "customation.css" but after compile it changed the @import order and CSS file will be this: @import "reset.css";@import "customation.css";body{font: 0.8em arial;} It's very important for us to keep @importing the custom.css file at the end for our customization. We can't put the @import to CSS file manually because SCSS file will be changed and CSS file will be rewritten. Any suggestion?