t-convex-nextjs-saas/src/constants.ts
2026-04-21 20:53:00 +02:00

7 lines
217 B
TypeScript

import z from 'zod/v4';
export const supportedLocales = ['en', 'pl'];
export function defaultPasswordValidator(error = 'Hasło jest za krótkie') {
return z.string().refine((val) => val.length >= 8, { error });
}