mirror of https://github.com/webpack/webpack.git
Add missing return
The module.hot.apply promise chain was not correctly merged into the module.hot.check() chain.
This commit is contained in:
parent
cca2cee859
commit
803a87fd0e
|
@ -16,7 +16,7 @@ if(module.hot) {
|
|||
return;
|
||||
}
|
||||
|
||||
module.hot.apply({
|
||||
return module.hot.apply({
|
||||
ignoreUnaccepted: true,
|
||||
ignoreDeclined: true,
|
||||
ignoreErrored: true,
|
||||
|
|
Loading…
Reference in New Issue