我很难让我的服务器重新加载,所以我按照一些链接结束了connect-livereload
。
然而,当我尝试在我的grunt文件中使用grunt代码时
connect: {
options: {
port: 3000,
hostname: 'localhost'
},
dev: {
options: {
middleware: function (connect) {
return [
require('connect-livereload')(), // <--- here
checkForDownload,
mountFolder(connect, '.tmp'),
mountFolder(connect, 'app')
];
}
}
}
}
我在我的grunt控制台中收到此错误:
Warning: checkForDownload is not defined Use --force to continue.
Aborted due to warnings.
connect-livereload
的文档非常可怕,没有提及checkForDownload
或mountFolder
对我的看法。
有人知道吗?