diff options
author | Vitaly Takmazov | 2018-06-16 23:59:32 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:52 +0300 |
commit | 1b7e41480e213d1f214c368f553d5eb03fb70897 (patch) | |
tree | e1f5642c3d2e7c6d29c39dfc879de583eebcd742 /vnext/webpack.config.js | |
parent | ce9d9ed32757e30c32fa9fe29d04491c3d0550d1 (diff) |
moment.js
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 97eeeb83..298ebde2 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -1,3 +1,4 @@ +const webpack = require('webpack'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const history = require('connect-history-api-fallback'); const convert = require('koa-connect'); @@ -41,6 +42,7 @@ module.exports = { ] }, plugins: [ + new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), new MiniCssExtractPlugin({ filename: "Juick.css", allChunks: true }) ], }; |