(url, options)
| 665 | }) |
| 666 | }, |
| 667 | transformRequest(url, options) { |
| 668 | warnFutureDeprecation(config, 'removeServerTransformRequest') |
| 669 | const environment = server.environments[options?.ssr ? 'ssr' : 'client'] |
| 670 | return environment.transformRequest(url) |
| 671 | }, |
| 672 | warmupRequest(url, options) { |
| 673 | warnFutureDeprecation(config, 'removeServerWarmupRequest') |
| 674 | const environment = server.environments[options?.ssr ? 'ssr' : 'client'] |
nothing calls this directly
no test coverage detected