Skip to content

Commit

Permalink
pass OPENSEA via env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ramilexe committed May 19, 2021
1 parent 9d5f1bc commit c269cc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newclient/src/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ console.log(window.configs);
const configs = {
APOLLO_HTTP: window.configs && window.configs.VUE_APP_HTTP_LINK || process.env.VUE_APP_HTTP_LINK,
APOLLO_WS: window.configs && window.configs.VUE_APP_WS_CLIENT || process.env.VUE_APP_WS_CLIENT,
OPENSEA: process.env.VUE_APP_OPENSEA_API,
OPENSEA: window.configs && window.configs.VUE_APP_OPENSEA_API || process.env.VUE_APP_OPENSEA_API,
NODE_ENV: process.env.NODE_ENV,
VERSION: process.env.VERSION,
ROUTER_MODE: process.env.ROUTER_MODE || 'history'
Expand Down

0 comments on commit c269cc4

Please sign in to comment.