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 4658457 + 516fd31 commit 7f2933bCopy full SHA for 7f2933b
lib/services/webpack/webpack-compiler-service.ts
@@ -46,6 +46,11 @@ export class WebpackCompilerService extends EventEmitter implements IWebpackComp
46
return;
47
}
48
49
+ // the hash of the compilation is the same as the previous one
50
+ if (this.expectedHashes[platformData.platformNameLowerCase] === message.hash) {
51
+ return;
52
+ }
53
+
54
let result;
55
56
if (prepareData.hmr) {
0 commit comments