用了grunt后一直显示waiting,页面也打不开
用了grunt 后入口的 app.js 对端口的操作不用屏蔽吗?我怎么运行后一直 waiting... 页面也打不开
用了grunt 后入口的 app.js 对端口的操作不用屏蔽吗?我怎么运行后一直 waiting... 页面也打不开
2017-06-24
你可以去看下nodemon的文档https://www.npmjs.com/package/grunt-concurrent
把 app.js移到script属性里
nodemon: {
dev: {
script: 'app.js',
options: {
args: [],
ignoredFiles: ['README.md','node_modules/**','.DS_Store'],
watchedExtensions: ['js'],
watchedFolder: ['app','config'],
debug: true,
delayTime: 1,
env: {
PORT: 3000
},
cwd: __dirname
}
}
},
举报