Enabling CORS Middleware In Firebase Cloud Functions
Firebase Cloud Functions are great, but there might come a time where you need CORS support. This can be enabled easily by using the CORS middleware. The documentation does detail part of the process, but it doesn’t mention you need to install the cors package and also specify origin: true as a configuration option. If you’re new to Node.js, this might catch you off guard. Go into your functions directory in your application and in your terminal: npm install cors --save this will add the CORS middleware package to your package.json.