Firebase Storage - useStorageFile() - 404 (Not Found) #1283
-
Hi, I am following the docs here to use firebase storage with vuefire. However, this seems to be causing a 404 not found error in the console. Most of the time, you would know the filename only after upload by user and thus the storage reference too. How do you prevent this 404 error ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
I think we might need to add an option to skip (initial) fetching until |
Beta Was this translation helpful? Give feedback.
I think we might need to add an option to skip (initial) fetching until
upload()
is called. To avoid the network failed request (that's the error you see) you would have to upload using the firebase/storage api and only useuseStorageFile()
for files that already exist.