Firebase 部署问题
Firebase deployment issue
我正在尝试将我的 Web 应用程序部署到 Firebase,并且我已经成功地完成了部署脚本,但是当我转到 url 时,我看到的是 Open Hosting Documentation 页面而不是我的应用程序。
这是我的 firebase.json 文件。
{
"hosting": {
"public": "y",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
将“public”的值从“y”更改为“build”
我正在尝试将我的 Web 应用程序部署到 Firebase,并且我已经成功地完成了部署脚本,但是当我转到 url 时,我看到的是 Open Hosting Documentation 页面而不是我的应用程序。 这是我的 firebase.json 文件。
{
"hosting": {
"public": "y",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
将“public”的值从“y”更改为“build”