-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathenv.js
25 lines (20 loc) · 975 Bytes
/
env.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
window._env_ = {
//* website-backend URL
// BASE_URL: "http://localhost:5000/",
BASE_URL: "https://website-backend.test.w3champions.com/",
// BASE_URL: "https://website-backend.w3champions.com/",
//* identification-service URL
// IDENTIFICATION_URL: "http://localhost:5000/",
// IDENTIFICATION_URL: "https://identification-service.w3champions.com/",
IDENTIFICATION_URL: "https://identification-service.test.w3champions.com/",
//* Blizzard oauth redirect URL
// REDIRECT_URL: "http://localhost:8080/login",
REDIRECT_URL: "https://w3champions.com/login",
//* update-service URL
LAUNCHER_UPDATE_URL: "https://update-service.test.w3champions.com/api/",
//* CDN resources url
INGAME_STATIC_RESOURCES_URL: "https://w3champions.wc3.tools/test/integration/",
// INGAME_STATIC_RESOURCES_URL: "https://w3champions.wc3.tools/prod/integration/",
//* public API client ID for W3Champions
BNET_API_CLIENT_ID: "d7bd6dd46e2842c8a680866759ad34c2",
};