Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit 9361608

Browse files
committed
feat(env): add url to env
1 parent 2edb085 commit 9361608

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/common/env/env.dev.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const Env = {
2-
envName: 'dev'
2+
envName: 'dev',
3+
url: 'http://localhost:5000'
34
}
45

56
export default Env

src/common/env/env.prod.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const Env = {
2-
envName: 'prod'
2+
envName: 'prod',
3+
url: 'http://localhost:5000'
34
}
45

56
export default Env

src/common/env/env.stg.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const Env = {
2-
envName: 'stg'
2+
envName: 'stg',
3+
url: 'http://localhost:5000'
34
}
45

56
export default Env

0 commit comments

Comments
 (0)