nginx部署vue项目
1.将vue项目打包npm run build2.nginx配置文件location / {root /usr/vuedemo/dist;indexindex.html index.htm;try_files $uri $uri/ /index.html;}如果不生效,nginx配置文件server中配置了root index将其注掉即可#root /www/server/phpmyadmin;#
·
1.将vue项目打包
npm run build
2.nginx配置文件
location / {
root /usr/vuedemo/dist; //第一步打包后得到 dist文件,指定dist文件位置
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
如果不生效,nginx配置文件server中配置了root index将其注掉即可
#root /www/server/phpmyadmin;
#index index.html index.htm index.php;
更多推荐



所有评论(0)