Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x 1x | /** * Common settings for forms. */ export const FORMS = { /** Input event delay for form fields to prevent an event on every keystroke. Milliseconds */ inputDebounce: 1000, } as const; /** * This should match [Password Policy](/docs/firebase-manual-config.md#update-the-configuration) */ export const PASSWORDS = { /** Glyphs, Firebase default maximum */ maxLength: 4096, /** Glyphs, nominally secure length */ minLength: 12, /** * Password strength as computed by check-password-strength library. * https://github.com/deanilvincent/check-password-strength?tab=readme-ov-file#result */ minStrength: 2, } as const; |