diff --git a/adev/src/content/guide/http/http-resource.md b/adev/src/content/guide/http/http-resource.md index 62d2d893824..131169ff550 100644 --- a/adev/src/content/guide/http/http-resource.md +++ b/adev/src/content/guide/http/http-resource.md @@ -38,13 +38,13 @@ user = httpResource(() => ({ 'fast': 'yes', }, reportProgress: true, - withCredentials: true, transferCache: true, keepalive: true, mode: 'cors', redirect: 'error', priority: 'high', - cache : 'force-cache' + cache : 'force-cache', + credentials: 'include', })); ```