https://harsima.github.io/vue-backend
# 安装项目依赖
npm install
# 开启本地服务,默认为localhost:9000
npm run dev
# 项目打包,构建生产环境
npm run build
# 打包过程中想查看具体报告则可以通过以下命令实现
npm run build --report
将打包后的文件放到Nginx安装目录中的html文件夹内,然后对Nginx进行简单配置即可。
...
# 以上保持默认配置即可
server {
listen 9090;
server_name localhost;
# 项目文件目录
root html/vue-backend;
index index.html index.htm;
location / {
# vue-router使用history模式下的必须配置
try_files $uri $uri/ /index.html;
index index.html;
}
}
欢迎反馈及探讨各种问题,同时请注意issue规则。 QQ交流群:745454791