diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-23 17:57:48 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-23 17:57:48 +0900 |
| commit | b918b6383b9819eb6385668a8307334c32a32b49 (patch) | |
| tree | e5cf59d6c88d7acd4842c3779aef3c6edc12ab99 | |
| parent | Tweak anime (diff) | |
| download | misskey-b918b6383b9819eb6385668a8307334c32a32b49.tar.gz misskey-b918b6383b9819eb6385668a8307334c32a32b49.tar.bz2 misskey-b918b6383b9819eb6385668a8307334c32a32b49.zip | |
improve client
Diffstat (limited to '')
| -rw-r--r-- | src/client/init.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/init.ts b/src/client/init.ts index 8926b35539..a4465d75c3 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -40,6 +40,11 @@ if ((typeof ColdDeviceStorage.get('lightTheme') === 'string') || (typeof ColdDev ColdDeviceStorage.set('lightTheme', require('@client/themes/l-light.json5')); ColdDeviceStorage.set('darkTheme', require('@client/themes/d-dark.json5')); } +const link = document.createElement('link'); +link.rel = 'stylesheet'; +link.href = 'https://use.fontawesome.com/releases/v5.15.3/css/all.css'; +document.head.appendChild(link); +// TODOここまで if (_DEV_) { console.warn('Development mode!!!'); |