This commit is contained in:
syuilo 2018-02-10 17:01:32 +09:00
parent 4f1795b97b
commit c869883d76
7 changed files with 217 additions and 257 deletions

11
src/web/app/config.ts Normal file
View file

@ -0,0 +1,11 @@
declare const _HOST_: string;
declare const _URL_: string;
declare const _DOCS_URL_: string;
declare const _LANG_: string;
declare const _RECAPTCHA_SITEKEY_: string;
export const host = _HOST_;
export const url = _URL_;
export const docsUrl = _DOCS_URL_;
export const lang = _LANG_;
export const recaptchaSitekey = _RECAPTCHA_SITEKEY_;