import { customAlphabet } from 'nanoid'; const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 16); export function generateNanoId() { return nanoid(); }