tubearchivist-frontend/app/cookies.ts
Sean Norwood 470c7a136f
Updates
Signed-off-by: Sean Norwood <norwood.sean@gmail.com>
2023-08-06 11:10:55 -05:00

6 lines
126 B
TypeScript

import { createCookie } from "@remix-run/node";
export const csrfCookie = createCookie("csrftoken", {
maxAge: 604_800,
});