mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 11:50:14 +00:00
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
|
import { createCookie } from "@remix-run/node";
|
||
|
|
||
|
export const csrfCookie = createCookie("csrftoken", {
|
||
|
maxAge: 604_800,
|
||
|
});
|