From 4576641105790dbd8733a7948f5a02f4abfe0f4f Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 26 Dec 2020 14:00:55 +0900 Subject: [PATCH] Add note --- src/client/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/config.ts b/src/client/config.ts index b9cc361cf6..2a4da4dce2 100644 --- a/src/client/config.ts +++ b/src/client/config.ts @@ -8,7 +8,7 @@ export const apiUrl = url + '/api'; export const wsUrl = url.replace('http://', 'ws://').replace('https://', 'wss://') + '/streaming'; export const lang = _LANG_; export const langs = _LANGS_; -export const locale = _LOCALE_; +export const locale = _LOCALE_; // TODO: code splittingするため、翻訳ファイルを分割したうえでwebpackのimport alias使って読み込むようにしたい export const version = _VERSION_; export const instanceName = siteName === 'Misskey' ? host : siteName; export const ui = localStorage.getItem('ui');