summaryrefslogtreecommitdiff
path: root/webpack/module/rules/index.ts
diff options
context:
space:
mode:
authorこぴなたみぽ <syuilotan@yahoo.co.jp>2017-10-22 14:11:28 +0900
committerこぴなたみぽ <syuilotan@yahoo.co.jp>2017-10-22 14:11:28 +0900
commit5f40e7eaa46fd8a3f60d2306a21364e38db73012 (patch)
tree5f3ea67dc29b4a9c5e2415a36373710826f37fbe /webpack/module/rules/index.ts
parentMerge pull request #835 from syuilo/greenkeeper/webpack-3.8.1 (diff)
downloadmisskey-5f40e7eaa46fd8a3f60d2306a21364e38db73012.tar.gz
misskey-5f40e7eaa46fd8a3f60d2306a21364e38db73012.tar.bz2
misskey-5f40e7eaa46fd8a3f60d2306a21364e38db73012.zip
オフラインでも画像を表示できるようにbase64にして埋め込むようにした
Diffstat (limited to 'webpack/module/rules/index.ts')
-rw-r--r--webpack/module/rules/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/webpack/module/rules/index.ts b/webpack/module/rules/index.ts
index 2707a9c2f1..9c1262b3d6 100644
--- a/webpack/module/rules/index.ts
+++ b/webpack/module/rules/index.ts
@@ -1,4 +1,5 @@
import i18n from './i18n';
+import base64 from './base64';
import themeColor from './theme-color';
import tag from './tag';
import stylus from './stylus';
@@ -6,6 +7,7 @@ import typescript from './typescript';
export default (lang, locale) => [
i18n(lang, locale),
+ base64(),
themeColor(),
tag(),
stylus(),