21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
|
|
module.exports = {
|
|
//打包配置
|
|
|
|
url: 'http://127.0.0.1:8000',
|
|
wsUrl: 'ws://127.0.0.1:8000',
|
|
swichWsUrl: 'ws://127.0.0.1:8001',
|
|
serialPortUrl: 'http://127.0.0.1:8000',
|
|
|
|
//开发配置
|
|
|
|
// url: 'http://192.168.1.17:8000',
|
|
// wsUrl: 'ws://192.168.1.17:8000',
|
|
// swichWsUrl: 'ws://192.168.1.17:8001',
|
|
// serialPortUrl: 'http://192.168.1.17:8000',
|
|
|
|
// 远程连接串口使用
|
|
// serialPortUrl: 'http://120.77.172.42:7202',
|
|
// serialPortUrl: 'http://192.168.1.17:8888',
|
|
}
|