fix: 修改ip

This commit is contained in:
2026-01-03 13:31:11 +08:00
parent a954e57c63
commit 7e5cbed8ad
2 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
//开发环境 //开发环境
module.exports = { module.exports = {
NODE_ENV: '"development"', NODE_ENV: '"development"',
BASE_API: '"http://124.222.155.209"', BASE_API: '"192.168.123.5"',
DOMAIN: '"http://124.222.155.209"', DOMAIN: '"192.168.123.5"',
SOCKET_URL:'"ws://124.222.155.209:8326/"' SOCKET_URL:'"ws://192.168.123.5:8326/"'
} }

View File

@@ -1,7 +1,7 @@
//生产环境 //生产环境
module.exports = { module.exports = {
NODE_ENV: '"production"', NODE_ENV: '"production"',
BASE_API:'"http://124.222.155.209"', BASE_API:'"192.168.123.5"',
DOMAIN: '"http://124.222.155.209"', DOMAIN: '"http://192.168.123.5"',
SOCKET_URL:'"ws://124.222.155.209:8326"' SOCKET_URL:'"ws://192.168.123.5:8326"'
} }