how to set request timeout in client

Bbackbone4/16/2023
createProxyClient has no option about timeout like axios does.
Just in one router request (query or mutate) use AbortController.But I do not want each router request to add this signal.It is boring.Any solutions?
Nnlucas4/16/2023
Why do you want a timeout?
Bbackbone4/16/2023
Sometimes client network speed is weak, I want cancel the requests
Nnlucas4/16/2023
But then the user will just be sat looking at a error'd out UI which could have eventually shown the data right?
Nnlucas4/16/2023
This is why enabling cancellation is more correct, then the client can abort if the user gives up loading the page
Bbackbone4/16/2023
Thank you.I will try it