vue项目打包上传服务器

用vue-cli搭建的做法
1、npm run build
2、把dist里的文件打包上传至服务器 例 /data/www/,我一般把index.html放在static里所以我的文件路径为:
/data/www/static|-----index.html|-----js|-----css|-----images....
3、配置nginx监听80端口, location /static alias 到 /data/www/static,重启nginxlocation /static {alias /data/www/static/;}
4、浏览器访问http://ip/static/index.html**即可

你可能感兴趣的:(vue项目打包上传服务器)