fix(config): make endpoint nullable
This commit is contained in:
parent
13b0ac737b
commit
fb34dfadb0
1 changed files with 1 additions and 1 deletions
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue