chore: update nuxt config

This commit is contained in:
riefive
2025-09-24 15:01:52 +07:00
parent 7c452c923a
commit d0b3d28cdd
6 changed files with 8 additions and 20 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
import { z } from 'zod'
const loginSchema = z.object({
name: z.string().min(6, 'Please enter a valid username'),
password: z.string().min(6, 'Password must be at least 6 characters'),
name: z.string().min(3, 'Please enter a valid username'),
password: z.string().min(3, 'Password must be at least 3 characters'),
})
const { login } = useUserStore()