vue3-vant-mobile/nginx.conf

25 lines
574 B
Nginx Configuration File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

server {
listen 80;
server_name localhost;
location /mobile {
# 关键配置:指向构建产物的物理路径
alias /usr/share/nginx/html/mobile;
# 处理Vue路由的HTML5 History模式
try_files $uri $uri/ /mobile/index.html;
# 确保正确识别文件类型
types {
text/html html;
application/javascript js;
text/css css;
}
}
# 可选:重定向根路径到/mobile按需启用
# location = / {
# return 301 /mobile;
# }
}