We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41329b0 commit 697f209Copy full SHA for 697f209
src/config/schema.ts
@@ -5,7 +5,7 @@ import { z } from "zod";
5
6
const stringArrayLike = z
7
.union([z.string(), z.array(z.string())])
8
- .transform(v => (typeof v === "string" ? [v] : v));
+ .transform(v => (typeof v === "string" ? v.split(",") : v));
9
10
const booleanLike = z
11
.any()
0 commit comments