We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38067da commit d6d33edCopy full SHA for d6d33ed
1 file changed
src/optimize/dynamic_dll_plugin/dll_config_model.js
@@ -83,6 +83,14 @@ function generateDLL(config) {
83
include: /[\/\\]node_modules[\/\\]normalize-url[\/\\]/,
84
exclude: /[\/\\]node_modules[\/\\]normalize-url[\/\\](.+?[\/\\])*node_modules[\/\\]/,
85
},
86
+ // TODO: remove when we drop support for IE11
87
+ // We need because query-string is distributed without
88
+ // any kind of transpilation
89
+ // More info: https://github.com/elastic/kibana/issues/58684
90
+ {
91
+ test: /\.js$/,
92
+ include: /[\/\\]node_modules[\/\\]query-string[\/\\]/,
93
+ },
94
],
95
// Self calling function with the equivalent logic
96
// from maybeAddCacheLoader one from base optimizer
0 commit comments