We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f9ef3 commit edd2d6bCopy full SHA for edd2d6b
src/index.ts
@@ -264,7 +264,11 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
264
compilationStatus.compilation = compilation;
265
lastClientStats = null;
266
compilationStatus.isReady = true;
267
- await createRendererIfReady(compilation);
+ try {
268
+ await createRendererIfReady(compilation);
269
+ } catch (error) {
270
+ compilation.errors.push(error);
271
+ }
272
});
273
};
274
this.statsCollectorPlugin = (compiler: Compiler) => apply(compiler, false);
0 commit comments