我试图让 grunt-contrib-less 为我编译一个更少的文件。我有以下 gruntfile:
less: {
files: {
"httpdocs/static/assets/css/result.css": "httpdocs/static/assets/css/dashboard.less"
}
},
路径绝对正确,我已经三次检查这些文件是否存在,但是,当我运行 grunt 时,我收到以下消息:
Running "less:files" (less) task
>> Destination not written because no source files were provided.
我的 gruntfile 缺少什么以使其正确编译 less 文件?我正在撕扯我的头发,因为我知道这可能很简单,但我无法弄清楚。