Can I ignore some keyword while compressing css file through webpack? In other words I need a loader which just compress my file without validation

41 views Asked by At

I have some programming logic in my css file like

.background {
    <# if(variable == true) {>
       background: transparent;
    <# }
 }

Can we ignore the <# , if keywords and the webpack let me ignore these keywords and build it without errors.

0

There are 0 answers