T
TanStack4mo ago
foreign-sapphire

i know its not the right place

i start to research about tanstack/start and i'm wondering is there any way to set http only cookie with tanstack/start i can't see in the docs
1 Reply
sunny-green
sunny-green4mo ago
There is a helpers to set cookies import { getCookie, setCookie } from "@tanstack/react-start/server"; and you can set options
setCookie("name", "data", {httpOnly: true})
setCookie("name", "data", {httpOnly: true})
There is no docs about that I think, at least did not find something about cookies

Did you find this page helpful?