自学内容网 自学内容网

uniapp 本地打包后使用http-server预览不了

使用nginx处理

我的环境
Apple M3 Max
14.1 (23B2073)

  1. 安装nginx
brew install nginx
  1. 找到nginx.conf文件
/opt/homebrew/etc/nginx/nginx.conf
  1. 增加server
server {
    listen 8091;  # 或者其他未被占用的端口
    server_name localhost;

    location / {
        root /path/to/your/project/unpackage/dist/build/h5;
        index index.html;
        try_files $uri $uri/ /index.html;  # 支持单页应用的前端路由
    }
}
  1. 保存文件,启动nginx
nginx
  1. 备用
nginx -s reload // 重启nginx
nginx -s stop // 停止nginx

原文地址:https://blog.csdn.net/DyuanH/article/details/143713051

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!