gpt4 book ai didi

firebase - 使用 Firebase 托管部署 Quasar

转载 作者:行者123 更新时间:2023-12-04 13:55:48 25 4
gpt4 key购买 nike

enter image description here
我在将我的类星体项目部署到 Firebase 时遇到问题。它说部署成功,但两个小时后,这就是网页上显示的内容。
firebase.json

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

const routes = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'),
children: [
{ path: '', component: () => import('pages/PageUsers.vue') },
{ path: '/chat/:otherUserId', component: () => import('pages/PageChat.vue') },
{ path: '/auth', component: () => import('pages/AuthPage.vue') }

]
},

// Always leave this as last one,
// but you can also remove it
{
path: '*',
component: () => import('pages/Error404.vue')
}
]

export default routes
我首先运行 quasar build,然后是 firebase init,然后是 firebase deploy,但网站上还没有显示任何内容。关于为什么会发生这种情况的任何想法?
更新:现在同一页面也显示在 http://localhost:8080/而不是我的项目上

最佳答案

如果您先构建,“firebase init”将覆盖您的 index.html。

  • Firebase 初始化
  • 运行类星体构建
  • Firebase 部署

  • 你是按这个顺序试的吗?
    我也遇到了同样的问题,但是在我更改订单后,它照常工作。

    关于firebase - 使用 Firebase 托管部署 Quasar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62760926/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com