您的位置:首页 > 新闻 > 热点要闻 > vue项目Nginx部署启动

vue项目Nginx部署启动

2024/12/23 5:39:38 来源:https://blog.csdn.net/qq_55946937/article/details/140825866  浏览:    关键词:vue项目Nginx部署启动

1.vue打包

        (1)package.json增加打包命令

  "scripts": {"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js --host 10.16.14.110","start": "npm run dev","unit": "jest --config test/unit/jest.conf.js --coverage","e2e": "node test/e2e/runner.js","test": "npm run unit && npm run e2e","build": "node build/build.js","build:prod": "webpack-dev-server build","build:stage": "webpack-dev-server build --mode staging"},

      (2)指定打包后的文件名(index.js)

        

      (3)打包

2.nginx部署

        (1)上传dist文件到Nginx

      (2)修改配置文件

       server {listen       8099;#启动端口server_name  localhost;#本机IPlocation / {#add_header Access-Control-Allow-Origin "*";root  html/sso;try_files $uri $uri/ /index.html;index  index.html index.htm;}location /prod-api {proxy_pass http://后端接口地址;}error_page   500 502 503 504  /50x.html;location = /50x.html {root   html/sso;}}

3.重启nginx

        

4.访问流程

       

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com