我正在努力让grunt-responive-images-extender工作,但不断收到此警告。
Warning: Path must be a string. Received [ 'src/index.html' ] Use --force to continue.
我的gruntfile任务看起来像这样
responsive_images_extender:{
target: {
options: {},
files: [{
expand: true,
src: ['index.{html,htm,php}'],
cwd: 'src',
dest: 'dist/'
}]
}
}
为什么会生成警告?不知道怎么解决这个问题?