Egg-Cnode npm run build可以运行 npm start报错如何解决
有些朋友会发现用egg.js的时候 npm run dev可与运行, 但是npm start启动不了. 主要原因就是代码写的有警告.
包括Egg-Cnode npm run build可以运行 npm start有些平台也会报错. 如何解决呢 start的时候加上 --ignore-stderr
把
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-cnode",
"stop": "egg-scripts stop --title=egg-server-cnode"
}
改为:
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-cnode --ignore-stderr",
"stop": "egg-scripts stop --title=egg-server-cnode"
}