我正在尝试将网站的更新实例上载到我从协作者的github存储库中提取的firebase。使用命令“ firebase deploy”后出现以下错误:
===部署到“ makany-webapp” ...
我正在部署托管
错误:指定的公共目录不存在,无法部署托管
这是 firebase.json 内容:
{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/public/**",
"destination": "/public.html"
},
{
"source": "**",
"destination": "/index.html"
}
]
}
}
我正在尝试从firebase.json所在的目录进行部署。该目录包含一个“ src”文件夹,其中包含index.html文件以及其他文件夹。
答案 0 :(得分:0)
我的坏。我必须将src文件夹名称更改为www