1

在此处输入图像描述

我在我的网页上有这个视图。它说,它已成功部署,但没有显示我的 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 没有显示。

4

1 回答 1

0

遵循在 Quasar 中部署 SPA的官方文档。那里有一个指南,如何在 Heroko、Now 等中进行部署。

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

于 2018-05-30T07:59:27.010 回答