fix(gon): matomo key can be a number

This commit is contained in:
Paul Chavard 2022-07-18 16:08:29 +02:00
parent 84a048ac47
commit a45b76e63a

View file

@ -27,7 +27,7 @@ const Gon = z
domain: z.string().optional(),
enabled: z.boolean().default(false),
host: z.string().optional(),
key: z.string().nullish()
key: z.string().or(z.number()).nullish()
})
.default({}),
sentry: z