vue3.0 +vite踩坑集
2021-05-08 本文已影响0人
塔塔七
vue3.0 +vite部署完成上线刷新404
问题原因: 路由模式为history模式 刷新会404
处理方案
- 使用hash模式
createWebHistory = >createWebHashHistory
import { createWebHashHistory, createRouter } from 'vue-router';
const router = createRouter({
history: createWebHashHistory(),
routes,
});
- 配置nginx 在server里添加
try_files $uri $uri/ /index.html;
server {
index index.html index.htm default.php default.htm default.html;
root /xx/xx/xxx;
try_files $uri $uri/ /index.html;
}