11

我在路由器文件中删除了带有历史模式的链接中的 hashbang。现在,当我刷新页面时,出现 404 错误。

我试图按照这个链接

然后,我在 firebase.json 中添加了部分:

{
  "hosting": {
    "public": "dist",
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}

但是什么都没有改变。

我不明白为什么我仍然有这个错误。我尝试了很多东西,但我找不到修复它的东西。

这是我的路由器文件:

const router = new VueRouter({
  mode: 'history',
  routes: [
    {
      path: '/',
      redirect: '/catalog'
    },
    {
      path: '/catalog',
      name: 'Catalog',
      component: Catalog
    },
    {
      path: '/catalog/category/:category',
      name: 'ProductsList',
      component: ProductsList
    },
    {
      path: '/catalog/category/:category/product/:id',
      name: 'ProductDetail',
      component: ProductDetail,
    },
    {
      path: '/catalog/category/:category/product/create',
      name: 'CreateProduct',
      component: CreateProduct
    }
  ]
});
4

1 回答 1

0

我唯一能想到的是您尚未将更改部署到firebase.json文件中。

执行

firebase deploy --only hosting

您应该能够从项目的托管页面查看部署历史记录。确认更改已部署。

于 2018-09-27T01:56:45.813 回答