From e29f439ff0ea9457518316f51b5c91591c008659 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 27 Jul 2017 21:37:24 +0430 Subject: [PATCH] load SSR bundle on warns too partial fix for #1179 --- lib/builder/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builder/builder.js b/lib/builder/builder.js index db6575e5bb..25c347ceeb 100644 --- a/lib/builder/builder.js +++ b/lib/builder/builder.js @@ -329,7 +329,7 @@ export default class Builder extends Tapable { this.compiler.plugin('done', async stats => { // Don't reload failed builds /* istanbul ignore if */ - if (stats.hasErrors() || stats.hasWarnings()) { + if (stats.hasErrors()) { return } // Reload renderer if available