我使用create near应用程序来构建我的项目。但当我运行yarn start
时,它会给我以下错误
Unexpected error while opening in browser: true
Error: Exited with code 3
at ChildProcess.<anonymous> (/home/rasha/voting- app/voying/node_modules/opn/index.js:85:13)
at Object.onceWrapper (events.js:520:26)
at ChildProcess.emit (events.js:400:28)
at maybeClose (internal/child_process.js:1055:16)
at Socket.<anonymous> (internal/child_process.js:441:11)
at Socket.emit (events.js:400:28)
at Pipe.<anonymous> (net.js:675:12)
本地服务器我从终端手动打开它。但我认为它找不到默认服务器,有人可以帮助吗?
opn包负责打开浏览器。
要禁用此功能,请将数组">选项"中的">open设置为false
就我而言:
//Gruntfile.js
options: {
port: 9200,
open: false, // Change this
livereload: 35729,
hostname: 'localhost'
},