Vue项目获取本地ip,并打开浏览器,快拿走

config/index.js里找到autoOpenBrowser将其设为true

在config/index.js 顶部添加:

const os = require(‘os’)
let localhost = ‘’
try {
const network = os.networkInterfaces()
localhost = network[Object.keys(network)[0]][1].address
} catch (e) {
localhost = ‘localhost’;
}

再找到host将其改为host:localhost即可

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章