Files
SOP/sop-website/sop-website-vue/build.sh
tanghc 6ab696dfaf - 新增ISV用户平台
- 新增门户网站(portal)
- 新增`C++`,`Rust`语言SDK
2020-11-07 10:55:12 +08:00

14 lines
209 B
Bash

#!/bin/sh
echo "开始构建..."
rm -rf dist
npm run build:prod
public_path="sop-website-server/src/main/resources/public"
rm -rf ../$public_path/static/*
cp -r dist/* ../$public_path
echo "构建完毕"