vue项目nginx打包发布

  1. 下载nginx.https://nginx.org/en/download.html stable版本

2.确定node,npm已经安装好

npm -v
node -v
vue -V
  1. 执行 npm run build
  2. 修改nginx配置文件。conf文件夹下nginx.conf文件:
  server {
        listen       8080;
        server_name  localhost;
        location / {
            root   E:/0work/datav/avue-data/dist;
            index  index.html index.htm;
        }
  1. 启动nginx 服务
cd E:\0work\Nginx\nginx-1.22.0
//启动服务
nginx
// 停止服务
nginx -s quit

你可能感兴趣的:(vue项目nginx打包发布)