(e)
| 682 | return ssrLoadModule(url, server, opts?.fixStacktrace) |
| 683 | }, |
| 684 | ssrFixStacktrace(e) { |
| 685 | warnFutureDeprecation( |
| 686 | config, |
| 687 | 'removeSsrLoadModule', |
| 688 | "ssrFixStacktrace doesn't need to be used for Environment Module Runners.", |
| 689 | ) |
| 690 | ssrFixStacktrace(e, server.environments.ssr.moduleGraph) |
| 691 | }, |
| 692 | ssrRewriteStacktrace(stack: string) { |
| 693 | warnFutureDeprecation( |
| 694 | config, |
nothing calls this directly
no test coverage detected