我正在开发一个 Angular 1.x 项目,我想将它托管在 Firebase 上,所以我下载了 CLI,登录并启动了该项目。在完成了我选择公用文件夹的所有选项之后,让它安装依赖项,创建 firebase.json..etc。当我运行时,firebase deploy
我收到以下错误:
Error: There was an error loading firebase.json:
Unexpected token ' ' at 136:98
ild('profiles').child(auth.uid).child('person_type').val() >= 20002
^
这是我的 firebase.json 文件中的内容:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "app",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
我试图通过我的代码查看它提到的错误的任何引用,但我找不到任何东西。这可能是firebase项目本身导致此错误的原因吗?