(url, opts?: { fixStacktrace?: boolean })
| 678 | return devHtmlTransformFn(server, url, html, originalUrl) |
| 679 | }, |
| 680 | async ssrLoadModule(url, opts?: { fixStacktrace?: boolean }) { |
| 681 | warnFutureDeprecation(config, 'removeSsrLoadModule') |
| 682 | return ssrLoadModule(url, server, opts?.fixStacktrace) |
| 683 | }, |
| 684 | ssrFixStacktrace(e) { |
| 685 | warnFutureDeprecation( |
| 686 | config, |
nothing calls this directly
no test coverage detected