【发布时间】:2020-08-24 15:29:11
【问题描述】:
我正在尝试将 Angular 应用程序部署到 Firebase。 Firebase 设置为托管多个网站。
在 Firebase 中,项目名称为“myapp-staging-84e3e”。 Firebase 中设置了两个站点,分别是“myapp-admin-staging”和“myapp-staging-84e3e”。我正在尝试将此应用部署到“myapp-admin-staging”。
当我尝试运行 firebase deploy --only hosting:admin 时,firebase-debug.log 中出现以下错误;
[debug] [2020-08-24T15:19:23.581Z] TypeError: Cannot read property 'deploys' of undefined
at /usr/local/lib/node_modules/firebase-tools/lib/deploy/index.js:84:36
at processTicksAndRejections (internal/process/task_queues.js:82:5)
[error]
[error] Error: An unexpected error has occurred.
我的某些设置一定不正确,但我无法确定它是什么。我的.firebaserc 文件如下所示;
{
"targets": {
"myapp-staging-84e3e": {
"hosting": {
"admin": [
"myapp-admin-staging"
]
}
}
},
"projects": {
"default": "myapp-staging-84e3e"
}
}
那么firebase.json文件是这样的;
{
"hosting": {
"public": "dist/MyApp-Admin",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
我哪里错了?
【问题讨论】:
标签: firebase-hosting firebase-cli