You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,19 @@ mix
31
31
level:2,
32
32
format:mix.inProduction() ?false:'beautify'// Beautify only in dev mode
33
33
})
34
+
35
+
// Run clean-css only on one specific stylesheet
36
+
.cleanCss({
37
+
// ...
38
+
}, 'src/app.scss')
39
+
40
+
// Run clean-css only on multiple specific stylesheets
41
+
.cleanCss({
42
+
// ...
43
+
}, [
44
+
'src/app.scss',
45
+
'src/app.sass',
46
+
])
34
47
```
35
48
36
49
For more information about clean-css configurations please refer to their [documentation](https://github.com/jakubpawlowicz/clean-css/blob/master/README.md).
0 commit comments