Skip to content

Commit 0bcfbb0

Browse files
committed
update BASE_URL
1 parent 76790c0 commit 0bcfbb0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/dev.env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const prodEnv = require('./prod.env')
55
module.exports = merge(prodEnv, {
66
NODE_ENV: '"development"',
77
// 接口地址配置
8-
BASE_URL: '"http://xxxxx"',
8+
BASE_URL: '"http://localhost:9000"',
99
//ws 服务的地址配置
1010
WS_BASE_URL:'"ws://xxxx"',
1111
//cookie 的过期时间

config/prod.env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module.exports = {
33
NODE_ENV: '"production"',
44
// 接口地址配置
5-
BASE_URL: '"http://xxxxx"',
5+
BASE_URL: '"http://localhost:9000"',
66
//ws 服务的地址配置
77
WS_BASE_URL:'"ws://xxxx"',
88
//cookie 的过期时间

config/test.env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const devEnv = require('./dev.env')
55
module.exports = merge(devEnv, {
66
NODE_ENV: '"testing"',
77
// 接口地址配置
8-
BASE_URL: '"http://xxxxx"',
8+
BASE_URL: '"http://localhost:9000"',
99
//ws 服务的地址配置
1010
WS_BASE_URL:'"ws://xxxx"',
1111
//cookie 的过期时间

0 commit comments

Comments
 (0)