summaryrefslogtreecommitdiff
path: root/src/web/app/config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-27 12:45:18 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-27 12:45:18 +0900
commit003ecd4c58dee078d40596a29fa56a7d5ce70e2d (patch)
tree796d1411235b688f266e69133417b5cf46f0c5ef /src/web/app/config.ts
parentMerge remote-tracking branch 'refs/remotes/origin/master' into domain (diff)
downloadmisskey-003ecd4c58dee078d40596a29fa56a7d5ce70e2d.tar.gz
misskey-003ecd4c58dee078d40596a29fa56a7d5ce70e2d.tar.bz2
misskey-003ecd4c58dee078d40596a29fa56a7d5ce70e2d.zip
Destory api. subdomain
api.example.com --> example.com/api
Diffstat (limited to 'src/web/app/config.ts')
-rw-r--r--src/web/app/config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/app/config.ts b/src/web/app/config.ts
index 32710dd9c4..8ea6f70101 100644
--- a/src/web/app/config.ts
+++ b/src/web/app/config.ts
@@ -2,6 +2,7 @@ declare const _HOST_: string;
declare const _HOSTNAME_: string;
declare const _URL_: string;
declare const _API_URL_: string;
+declare const _WS_URL_: string;
declare const _DOCS_URL_: string;
declare const _STATS_URL_: string;
declare const _STATUS_URL_: string;
@@ -20,6 +21,7 @@ export const host = _HOST_;
export const hostname = _HOSTNAME_;
export const url = _URL_;
export const apiUrl = _API_URL_;
+export const wsUrl = _WS_URL_;
export const docsUrl = _DOCS_URL_;
export const statsUrl = _STATS_URL_;
export const statusUrl = _STATUS_URL_;