6 lines
112 B
Bash
6 lines
112 B
Bash
#!/bin/bash
|
|
set -e
|
|
npm install
|
|
npm run build
|
|
echo "前端已打包,dist 目录可部署到 nginx/html 目录"
|