fix(config): make endpoint nullable

This commit is contained in:
diced 2022-06-18 13:47:59 -07:00
parent 13b0ac737b
commit fb34dfadb0
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -19,7 +19,7 @@ const validator = object({
s3: object({
access_key_id: string(),
secret_access_key: string(),
endpoint: string().notRequired().default(null),
endpoint: string().notRequired().nullable(),
bucket: string(),
force_s3_path: boolean().default(false),
}).notRequired(),