GCP Cloud Function - ERROR fetching storage source during build/deploy

后端 未结 7 1854
广开言路
广开言路 2021-02-19 12:23

Running into problems building deploying functions. When trying to programmatically deploy the function I get the following output in builder logs (ERRORS).


202         


        
7条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-19 13:10

    I had the same problem deploying cloud functions on my newly started Firebase projects. My local version of node was 15

    For beginners (like me) which were struggling downgrading node on Mac, you can use the following commands:

    sudo npm install -g n
    sudo n 12
    

提交回复
热议问题