2017-08-09 46 views

回答

0

你也可以改变永久变革默认服务器的端口在反应本土节点模块your_app\node_modules\react-native\local-cli\server\server.js和端口8081改为9999这样的:

.... 
module.exports = { 
name: 'start', 
func: server, 
description: 'starts the webserver', 
options: [{ 
    command: '--port [number]', 
    default: 8081, //change to 9999 
    parse: (val: string) => Number(val), 
}, 
.... 

我希望这个答案可以帮助你:)

相关问题