使用 Firebase 托管进行部署时,我得到 Hosting.rewrites[0] 不完全是 [subschema 0]、[subschema 1] 中的一个

问题描述 投票:0回答:2

将应用程序部署到 Firebase 托管时,出现以下错误:

HTTP Error: 400, hosting.rewrites[0] is not exactly one from [subschema 0],[subschema 1]

这可以通过简单的配置来实现,例如:

{
  "hosting": {
    "public": "public",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "rewrites": [
      {
        "source": "/*/*",
        "destination": "index.html"
      }
    ]
  }
}

此配置在本地服务时确实有效。

firebase web-deployment firebase-hosting
2个回答
17
投票

显然,该错误表明我应该在“index.html”前面放置一个“/”。然后它适用于本地和远程部署。


0
投票

hosting[cuponera]:无法找到函数

ssr
的有效端点,但仍将其包含在 配置

© www.soinside.com 2019 - 2024. All rights reserved.