【Vue】宝塔面板服务器配置Vue项目
[1] 编译Vue项目成dist文件夹
输入打包Vue项目语句:
npm run build:prod
打包完成后,shell提示如下: 然后在项目中,会出现一个dist文件夹:
[2] 把dist文件夹上传到服务器
我的路径如下:
[3] 增加配置服务器的nginx
配置代码如下:
server {
listen 80;
server_name localhost;
location / {
root /www/wwwroot/blueele/dist;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /prod-api/{
共有 0 条评论