[Vuejs]-Loading an image with getDownloadURL() from firebase storage do not work

0👍

It looks like you’re trying to use the Cloud Storage for Firebase client library on a server. It’s only intended to work in a browser environment. Browsers provide a native XMLHttpRequest object, and that’s what the client library is assuming. Installing the node module xmlhttprequest won’t simply provide an implementation that will automatically import into the Firease SDK’s own module.

Leave a comment