Firebase托管Vue.js net :: ERR_ABORTED

时间:2018-11-12 07:52:00

标签: firebase vue.js firebase-hosting

我正在尝试在 Firebase 上托管我的 Vue.js 应用,但遇到了问题。我可以在计算机上本地运行该应用程序,但是当我部署到 Firebase Hosting 时,似乎会加载 index.html ,但 / static 下的文件>似乎没有加载。

See this

我收到以下错误消息:

  

获取   https://hostname.com/static/css/app.f6523a21105b673f23ff46cfd6d47a69.css   net :: ERR_ABORTED 404

我的firebase.json:

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

我的vue.js应用程序使用/ viewTask重写。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我联系了Firebase支持人员,结果发现这是Firebase问题,而不是我的代码问题。他们已修复它,并且现在可以正常工作。