From dd85278d54e7bef392e44ccf22cf49fe595a36d6 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 23 Nov 2017 06:51:32 +0900 Subject: Fix bug --- webpack/plugins/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webpack/plugins/index.ts') 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() ]; -- cgit v1.2.3-freya