We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd49a45 + e49a969 commit 21918baCopy full SHA for 21918ba
vue.config.js
@@ -46,7 +46,26 @@ module.exports = {
46
entryOnly: true
47
}
48
]);
49
- config.plugin("lodash").use(LodashModuleReplacementPlugin);
+ config.plugin("lodash").use(LodashModuleReplacementPlugin, [
50
+ {
51
+ shorthands: true,
52
+ cloning: true,
53
+ currying: true,
54
+ caching: true,
55
+ collections: true,
56
+ exotics: true,
57
+ guards: true,
58
+ metadata: true,
59
+ deburring: true,
60
+ unicode: true,
61
+ chaining: true,
62
+ memoizing: true,
63
+ coercions: true,
64
+ flattening: true,
65
+ paths: false,
66
+ placeholders: true
67
+ }
68
+ ]);
69
} else if (process.env.NODE_ENV === "test") {
70
config.devtool("eval");
71
config.module
0 commit comments