Skip to content

Commit edd2d6b

Browse files
authored
fix: Add render errors to compilation (#54)
1 parent e1f9ef3 commit edd2d6b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,11 @@ export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
264264
compilationStatus.compilation = compilation;
265265
lastClientStats = null;
266266
compilationStatus.isReady = true;
267-
await createRendererIfReady(compilation);
267+
try {
268+
await createRendererIfReady(compilation);
269+
} catch (error) {
270+
compilation.errors.push(error);
271+
}
268272
});
269273
};
270274
this.statsCollectorPlugin = (compiler: Compiler) => apply(compiler, false);

0 commit comments

Comments
 (0)