diff --git a/auth/src/auth.ts b/auth/src/auth.ts index 95bbe2c..b439590 100644 --- a/auth/src/auth.ts +++ b/auth/src/auth.ts @@ -37,7 +37,7 @@ export const auth = betterAuth({ maxPasswordLength: 128, password: { hash: async (password: string) => { - return bcrypt.hash(password, 10); + return bcrypt.hash(password, 12); }, verify: async (data: { hash: string; password: string }) => { return bcrypt.compare(data.password, data.hash);