We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10c39d commit aea4b7bCopy full SHA for aea4b7b
2 files changed
netlify.toml
@@ -1,6 +1,6 @@
1
[build]
2
base = "portfoliocms.client"
3
- command = "npm run build"
+ command = "npm run build -- --no-turbopack"
4
publish = ".next"
5
6
[[plugins]]
portfoliocms.client/app/(auth)/login/page.tsx
@@ -8,7 +8,7 @@ import * as z from "zod";
8
import Link from "next/link";
9
10
const loginSchema = z.object({
11
- email: z.string().email("Please enter a valid email address."),
+ email: z.email("Please enter a valid email address."),
12
password: z.string().min(8, "Password must be at least 8 characters."),
13
});
14
0 commit comments