在 Firebase 托管中使用 vue-router 部署 Quasar (VueJS)

Deploying Quasar (VueJS) with vue-router in Firebase Hosting

我的网页上有这个视图。它说,它已成功部署,但没有显示我的 SPA。

配置:

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

我正在使用默认 router.js 设置

 {
    path: '/',
    component: () => import('layouts/default'),
    children: [
      { path: '', component: () => import('pages/index') }
    ]
  }

已走步数

(firebase already installed an im already logged in)
1. quasar build - to build quasar app for prod
2. firebase init
           - `dist/spa-mat` as directory 
3. firebase deploy

任何知道如何在 Firebase 托管中部署的 Quasar 开发人员?我认为我做的一切都正确,但我的 SPA 没有显示。

遵循 Deployment of SPA in Quasar 的官方文档。那里有如何在 Heroko、Now 等中部署的指南

如果你做对了,给它几分钟到一个小时。