1import * as crypto from "node:crypto"; 2 3export const generateNewSecret = () => { 4 return crypto.randomBytes(32).toString("hex"); 5}; 6 7export const SESSIONS_SECRET = generateNewSecret();