diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-23 06:51:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-23 06:51:32 +0900 |
| commit | dd85278d54e7bef392e44ccf22cf49fe595a36d6 (patch) | |
| tree | 44c6f6425605a62ac427c4ca134f984146d7e206 /webpack/plugins/index.ts | |
| parent | v3194 (diff) | |
| download | misskey-dd85278d54e7bef392e44ccf22cf49fe595a36d6.tar.gz misskey-dd85278d54e7bef392e44ccf22cf49fe595a36d6.tar.bz2 misskey-dd85278d54e7bef392e44ccf22cf49fe595a36d6.zip | |
Fix bug
Diffstat (limited to 'webpack/plugins/index.ts')
| -rw-r--r-- | webpack/plugins/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webpack/plugins/index.ts b/webpack/plugins/index.ts index 24782a1de6..3d1416d1ea 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -1,5 +1,6 @@ const StringReplacePlugin = require('string-replace-webpack-plugin'); +import consts from './consts'; import hoist from './hoist'; //import minify from './minify'; import banner from './banner'; @@ -9,6 +10,7 @@ const isProduction = env === 'production'; export default (version, lang) => { const plugins = [ + consts(lang), new StringReplacePlugin(), hoist() ]; |