Add default value for config
This commit is contained in:
parent
0fca629c34
commit
2408ff4ba9
1 changed files with 6 additions and 6 deletions
|
@ -2,13 +2,13 @@ import configJson from '../../../../config.json'; // root path json config
|
||||||
|
|
||||||
const config = 'production' === process.env.NODE_ENV ? configJson.production : configJson.development;
|
const config = 'production' === process.env.NODE_ENV ? configJson.production : configJson.development;
|
||||||
|
|
||||||
export const GOOGLE_API_KEY = config.google && config.google.apiKey;
|
export const GOOGLE_API_KEY = (config.google && config.google.apiKey) || '';
|
||||||
export const GOOGLE_CLIENT_ID = config.google && config.google.clientID
|
export const GOOGLE_CLIENT_ID = (config.google && config.google.clientID) || '';
|
||||||
export const DROPBOX_APP_KEY = config.dropbox && config.dropbox.appKey
|
export const DROPBOX_APP_KEY = (config.dropbox && config.dropbox.appKey) || '';
|
||||||
|
|
||||||
export const domain = config.domain;
|
export const domain = config.domain || ''; // domain name
|
||||||
export const urlpath = config.urlpath;
|
export const urlpath = config.urlpath || ''; // sub url path, like: www.example.com/<urlpath>
|
||||||
export const debug = config.debug;
|
export const debug = config.debug || false;
|
||||||
|
|
||||||
export const port = window.location.port;
|
export const port = window.location.port;
|
||||||
export const serverurl = `${window.location.protocol}//${domain ? domain : window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`;
|
export const serverurl = `${window.location.protocol}//${domain ? domain : window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`;
|
||||||
|
|
Loading…
Reference in a new issue