10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
/* eslint-disable import/unambiguous */
|
|
|
|
module.exports = {
|
|
webpack: config => {
|
|
// See https://github.com/webpack/webpack/issues/5135
|
|
config.module.strictThisContextOnImports = true
|
|
return config
|
|
}
|
|
}
|