Vue项目打包部署Nginx配置及前端缓存问题解决 1、部署单个站点server { listen 80; server_name localhost; location / { root /app; index index.html; try_files $uri $uri/ /index.html; } }2、部署多个站点server {… 彭世瑜 2023-03-09 827 缓存 部署 Nginx vue