项目部署
小于 1 分钟快速上手项目简介项目介绍
本教程将指导你如何部署 vue3-element-admin 项目。
项目部署
# 项目打包
pnpm run build
# 上传文件至远程服务器
将本地打包生成的 dist 目录下的所有文件拷贝至服务器的 /usr/share/nginx/html 目录。
# nginx.cofig 配置
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
# 反向代理配置
location /prod-api/ {
# vapi.youlai.tech 替换后端API地址,注意保留后面的斜杠 /
proxy_pass http://vapi.youlai.tech/;
}
}