(url, options)
| 670 | return environment.transformRequest(url) |
| 671 | }, |
| 672 | warmupRequest(url, options) { |
| 673 | warnFutureDeprecation(config, 'removeServerWarmupRequest') |
| 674 | const environment = server.environments[options?.ssr ? 'ssr' : 'client'] |
| 675 | return environment.warmupRequest(url) |
| 676 | }, |
| 677 | transformIndexHtml(url, html, originalUrl) { |
| 678 | return devHtmlTransformFn(server, url, html, originalUrl) |
| 679 | }, |
nothing calls this directly
no test coverage detected