Vue3+Vite+Nginx 二级路径部署

vue路由文件

const router = createRouter({
    history: createWebHistory('/abc/'),// 这里添加路由前缀
    routes
})

vite.config.js

export default defineConfig({
    base: '/abc/', // 设置打包路径
})

nginx配置文件

location /abc {
    alias html/dist/; # 这里需要alias
    index  index.html index.htm;
    try_files $uri $uri/ html/dist/index.html;
}

你可能感兴趣的:(Vue,nginx,前端,vue.js)