1. 在打包前端代码之前,请务必先执行以下指令,确定大致上显示都没有问题
npm install
npm run serve 
# 等价于 vue-cli-service serve
  1. 确定无误后 Ctrl-C 中断服务器,执行 build 指令建构
npm run build
# 等价于 vue-cli-service build
  1. Build 完之后,应该会在 Terminal 中看到绿色的 DONE [下图1] 同时也会看到有一个 dist 资料夹 [下图2]

Untitled

  1. 将 dist 资料夹复制到后端的 codebase 中,并改名为 public 即完成,如果原本就有 public 可以先删除(或更名),并在后端执行 npm run start 看到最新前端展示

Untitled

# seedao-backend/
npm install
npm run start

# 如果是 Windows 请执行
npm run start:ps

# Server has started on <http://localhost:8000> !