Using the code from the docs on a Blazor WASM application:
`services.AddSingleton(sp => new FlurlClientCache()
.Add("MyCli", "https://some-api.com"));
public MyService(IFlurlClientCache clients) {
_flurlCli = clients.Get("MyCli");`
causes a PlatformNotSupportedException. Looking at the stack trace, it looks like it is related to UseCookies.