Skip to content

Instantly share code, notes, and snippets.

View gmencz's full-sized avatar
🏠
Working from home

Gabriel gmencz

🏠
Working from home
  • Iconic Devs
  • Vigo, Spain
View GitHub Profile
type CookieOptions = {
maxAge?: number;
expires?: Date;
httpOnly?: boolean;
path?: string;
domain?: string;
secure?: boolean;
sameSite?: boolean | 'lax' | 'strict' | 'none';
};