env.ts 888 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5



export default {
  dev:{
wuhao's avatar
wuhao committed
6
    "REACT_APP_URL":"/vstp", //  http://tasks-dev.nangaoyun.com
wuhao's avatar
wuhao committed
7
    "DEFAULT_HEAD_IMG":"./assets/images/avatars/avatar_21.jpg",
wuhao's avatar
wuhao committed
8 9
    "DEFAULT_404_IMG":"./assets/illustrations/illustration_404.svg",
    "DOWNLOAD_URL":"http://192.168.40.2",
wuhao's avatar
wuhao committed
10
    "SOCKET_IO_URL":"/wss"
wuhao's avatar
wuhao committed
11 12
  },
  test:{
wuhao's avatar
wuhao committed
13 14
    "REACT_APP_URL":"/vstp",
    "DEFAULT_HEAD_IMG":"./assets/images/avatars/avatar_21.jpg",
wuhao's avatar
wuhao committed
15 16
    "DEFAULT_404_IMG":"./assets/illustrations/illustration_404.svg",
    "DOWNLOAD_URL":"http://192.168.40.2",
wuhao's avatar
wuhao committed
17
    "SOCKET_IO_URL":"http://localhost:7001"
wuhao's avatar
wuhao committed
18 19
  },
  prod:{
wuhao's avatar
wuhao committed
20 21 22 23
    "REACT_APP_URL":"http://192.168.40.36:8044/vstp", //  http://tasks-dev.nangaoyun.com
    "DEFAULT_HEAD_IMG":"./assets/images/avatars/avatar_21.jpg",
    "DEFAULT_404_IMG":"./assets/illustrations/illustration_404.svg",
    "DOWNLOAD_URL":"http://192.168.40.2",
wuhao's avatar
wuhao committed
24
    "SOCKET_IO_URL":"http://192.168.40.36:7001"
wuhao's avatar
wuhao committed
25 26
  }
}