(error)
| 192 | pipe(res); |
| 193 | }, |
| 194 | onShellError(error) { |
| 195 | const {pipe: pipeError} = renderToPipeableStream( |
| 196 | React.createElement('html', null, React.createElement('body')), |
| 197 | { |
| 198 | bootstrapScripts: mainJSChunks, |
| 199 | } |
| 200 | ); |
| 201 | pipeError(res); |
| 202 | }, |
| 203 | }); |
| 204 | } catch (e) { |
| 205 | console.error(`Failed to SSR: ${e.stack}`); |
nothing calls this directly
no test coverage detected