From 0cdb02aa2bd4c4259b6a6deab1fe7fdf91c4ed1f Mon Sep 17 00:00:00 2001 From: SkyZeroZx <73321943+SkyZeroZx@users.noreply.github.com> Date: Tue, 1 Jul 2025 20:33:47 -0500 Subject: [PATCH] docs: Update documentation httpResource with credentials option (#62415) PR Close #62415 --- adev/src/content/guide/http/http-resource.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', })); ```