summaryrefslogtreecommitdiff
path: root/src/web/app/config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-10 17:01:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-10 17:01:32 +0900
commitc869883d76455844e8d56ec4e863c6405489f897 (patch)
treee5dfbe0b10cf5b208a2d008d3bd51c3e7675e258 /src/web/app/config.ts
parentwip (diff)
downloadmisskey-c869883d76455844e8d56ec4e863c6405489f897.tar.gz
misskey-c869883d76455844e8d56ec4e863c6405489f897.tar.bz2
misskey-c869883d76455844e8d56ec4e863c6405489f897.zip
wip
Diffstat (limited to 'src/web/app/config.ts')
-rw-r--r--src/web/app/config.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/web/app/config.ts b/src/web/app/config.ts
new file mode 100644
index 0000000000..8357cf6c72
--- /dev/null
+++ b/src/web/app/config.ts
@@ -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_;