Update docs, tweak type

This commit is contained in:
rijkvanzanten
2021-03-03 16:38:21 -05:00
parent 5f08b5e331
commit a5cb9f6b6a
2 changed files with 2 additions and 1 deletions

View File

@@ -167,6 +167,7 @@ For each of the storage locations listed, you must provide the following configu
| Variable | Description | Default Value |
| --------------------------- | --------------------------------------------------------- | ------------- |
| `STORAGE_<LOCATION>_DRIVER` | Which driver to use, either `local`, `s3`, `gcs`, `azure` | |
| `STORAGE_<LOCATION>_ROOT` | Where to store the files on disk | `''` |
Based on your configured driver, you must also provide the following configurations:

View File

@@ -260,5 +260,5 @@ export class GoogleCloudStorage extends Storage {
export interface GoogleCloudStorageConfig extends StorageOptions {
bucket: string;
root: string;
root?: string;
}