mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 06:53:42 +08:00
14 lines
209 B
Bash
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 "构建完毕"
|