我在路由器文件中删除了带有历史模式的链接中的 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
}
]
});