Я пытаюсь настроить Cors в своем проекте, но после установки пакета я получаю сообщение об ошибке после попытки развертывания в Firebase.
Error
Error: Error occurred while parsing your function triggers.
TypeError: Cannot read property 'origin' of undefined
Мой код - index.js
const cors = require('cors')({
origin: true
});
Пакеты
"dependencies": {
"firebase-admin": "~7.0.0",
"firebase-functions": "^2.2.0",
"express": "*",
"cors": "*"
},