Here i give input, which is valid CSS
h6 {
font-family: niveau-grotesk-medium, sans-serif !important;
}
after purging it is converted to this, which is invalid
h6 {
font-family: niveau-grotesk-medium, "sans-serif!important";
}
i tried changing the input to this to prevent the error, and apparently that's invalid
font-family: niveau-grotesk-medium, "sans-serif" !important;