mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-01 01:24:51 +02:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import { z } from "zod";
|
|
|
|
export const subdomainSchema = z
|
|
.string()
|
|
.regex(
|
|
/^(?!:\/\/)([a-zA-Z0-9-_]+\.)*[a-zA-Z0-9-_]+$/,
|
|
"Invalid subdomain format"
|
|
)
|
|
.min(1, "Subdomain must be at least 1 character long");
|