Vue3+Vite+Nginx 二级路径部署
2023-03-20 20:15:39
371次阅读
0个评论
vite.config.js
nginx配置文件
export default defineConfig({
base: '/abc/', // 设置打包路径
})
nginx配置文件
location /abc {
alias html/abc/; # 这里需要alias
index index.html index.htm;
try_files $uri $uri/ /abc/index.html;
}
00