描述:
编译css文件时净化选项不起作用。你能解释一下这种方法有什么问题吗?
重现步骤:
这是在我的混合文件中:
mix.style('resources/assets/css/some.css', 'public/css/some.css').options({
purifyCss: {
paths: ['/home/smolen/Projects/laravel-test/resources/views/welcome.blade.php'],
verbose:true,
minimize:true,
}
})
这是我的 css 文件,编译后保持不变:
.unused-class{
color:red;
}
.used-class{
color:blue;
}
```
这是在我的刀片文件中:
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
</head>
<body>
<div class="used-class"></div>
</body>
</html>