docs: Update documentation httpResource with credentials option (#62415)

PR Close #62415
This commit is contained in:
SkyZeroZx 2025-07-01 20:33:47 -05:00 committed by Jessica Janiuk
parent 8fbe558cbc
commit 0cdb02aa2b

View file

@ -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',
}));
```