mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-23 13:48:51 +02:00
10 lines
242 B
TypeScript
10 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");
|