0

运行 grunt 时不断出错,有人知道如何将 UNCSS 与 php 一起使用吗?

Fatal error: spawn C:\Users\**.**\Desktop\PhpstormProjects\**\node_modules\phantomjs\lib\phantom\phantomjs.exe ENOENT

我不确定如何解决这个问题,我的 UNCSS 文件看起来像

 uncss: {
    dist: {
        options: {

            stylesheets  : ['css/clean.min.css'],
            style: 'compressed'
        },

        files: [
            //{ src: '*.html', dest: 'css/uncss/compiled.min.css'}
            {
                'css/app.clean.css': ['**/*.php']
            }
        ]
    }
},

非常感谢所有帮助

4

1 回答 1

2

在谷歌进行一些研究之后,我将得出结论,你不能为 uncss 使用动态 php 文件(正如我在上面的评论中所说)。

您应该为 uncss 生成页面的 html 结果或使用页面链接。

请阅读这篇文章(它是关于 Wordpress,但你应该了解基本概念)

Liam Gladdy 关于 uncss 的博客文章

于 2016-02-23T17:00:17.543 回答