Commit 02504f2f authored by Mike Greiling's avatar Mike Greiling

use deterministic module IDs in production and development

parent 312137c6
...@@ -83,6 +83,10 @@ var config = { ...@@ -83,6 +83,10 @@ var config = {
assets: true assets: true
}), }),
new webpack.IgnorePlugin(/moment/, /pikaday/), new webpack.IgnorePlugin(/moment/, /pikaday/),
// use deterministic module ids in all environments
IS_PRODUCTION ?
new webpack.HashedModuleIdsPlugin() :
new webpack.NamedModulesPlugin(),
], ],
resolve: { resolve: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment