Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,10 @@ In order to store anything on Firebase, we need to set the storage url provided

![Storage url](http://d.pr/i/1lKjQ.png)

The `setStorageUrl()` method accepts a single parameter: your root storage url.
The `setStorageUrl()` method accepts a single parameter: your root storage url (without leading "gs://").

```javascript
firestack.storage.setStorageUrl(`gs://${config.firebase.storageBucket}`)
firestack.storage.setStorageUrl(`${config.firebase.storageBucket}`)
```

If the `storageBucket` key is passed as a configuration option, this method is automatically called by default.
Expand Down