Skip to content

Commit 21918ba

Browse files
Merge pull request #529 from lionel-bijaoui/v3
Fix deep property path not working
2 parents bd49a45 + e49a969 commit 21918ba

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

vue.config.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,26 @@ module.exports = {
4646
entryOnly: true
4747
}
4848
]);
49-
config.plugin("lodash").use(LodashModuleReplacementPlugin);
49+
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+
]);
5069
} else if (process.env.NODE_ENV === "test") {
5170
config.devtool("eval");
5271
config.module

0 commit comments

Comments
 (0)