0
votes

I have 1 storage buckets in Google cloud storage. Firebase create a new bucket and it is default in firebase console. I want to change the default bucket and delete the bucket created by firebase. And how can I find for config settings for my bucket in google cloud storage.

This is for default bucket :

   var config = {
                apiKey: "xx",
                authDomain: "xx.firebaseapp.com",
                databaseURL: "https://xx.firebaseio.com",
                projectId: "xx",
                storageBucket: "xx",
                messagingSenderId: "xx"
            };
            firebase.initializeApp(config);
1

1 Answers

2
votes

If you go to your Storage browser in the Cloud console, you will see a list of the storage buckets for your project.

enter image description here

Copy the name of the bucket you want to use and put it in the storageBucket property of the configuration.