In Visual Studio, Minification is failing for me in my MVC project when I introduce any variables in my bundled css files. Example:
/* Minification failed. Returning unminified contents.
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,23): run-time error CSS1039: Token not allowed after unary operator: '-main-bg-color'
*/
:root {
/*DEFAULT COLORS LINES*/
--main-bg-color: rgb(34,34,34);
}
body{
background-color:var(--main-bg-color);
}
other minifiers work just fine, is there a way to fix this?
I ended up implementing Sass as a twofold solution which allows both a multitude of variable methods along with minification.