Browse Source
perf(bundle-size): only en locale from moment
Shaves 136.63k of final renderer.prod.js bundle size.
renovate/lint-staged-8.x
Tom Kirkpatrick
7 years ago
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
1 changed files with
3 additions and
0 deletions
-
webpack.config.base.js
|
|
@ -3,6 +3,7 @@ |
|
|
|
*/ |
|
|
|
|
|
|
|
import path from 'path' |
|
|
|
import { IgnorePlugin } from 'webpack' |
|
|
|
import { dependencies as externals } from './app/package.json' |
|
|
|
|
|
|
|
export default { |
|
|
@ -38,6 +39,8 @@ export default { |
|
|
|
modules: [path.join(__dirname, 'app'), 'node_modules'] |
|
|
|
}, |
|
|
|
|
|
|
|
plugins: [new IgnorePlugin(/^\.\/locale$/, /moment$/)], |
|
|
|
|
|
|
|
optimization: { |
|
|
|
namedModules: true |
|
|
|
} |
|
|
|