如何在Firebase托管上托管Flutter Web(Hummingbird)

时间:2019-05-19 08:36:19

标签: flutter firebase-hosting flutter-web

我创建了一个Flutter Web项目,并在localhost中正常工作。因此,我计划将网站托管在firebase中。我遵循了已成功部署的命令,但在控制台中仅显示黑屏,并显示错误消息。

错误:

来源为“ https://myportfolioflutterweb.firebaseapp.com/web/main.dart.js”的加载失败。 SyntaxError:期望的表达式,得到了'<'[了解更多]

我的项目结构:

enter image description here

firebase.json:

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

命令:

enter image description here

注意:当我将public dir作为公用文件夹时,它将创建index.html。我手动删除了文件,然后导航到路径为web / index.html

1 个答案:

答案 0 :(得分:2)

最后,我解决了这个问题。我在Firebase托管的公用文件夹中导航错误的路径。要首先部署Flutter网站,我需要使用以下命令构建项目

构建

webdev build

构建项目后,它将在项目内部创建一个构建文件夹 enter image description here 在我以root身份公开路径但正确的路径是build之前

正确的路径:

 What do you want to use as your public directory? build

我在下面附加了完整的Firebase托管部署命令,

enter image description here