我在 nginx 上包含了这个,刷新页面时路由仍然不起作用
nginx:
location / {
try_files $uri $uri/ /index.html;
}
路由(vue):
const routes = [
{
path: '/',
name: 'Access',
component: () => import('@/views/Access'),
meta: {
guest: true
}
}
]
const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
routes
})