This commit is contained in:
CanbiZ 2024-12-16 14:45:45 +01:00 committed by GitHub
commit b7158920f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -111,9 +111,9 @@ function update_script() {
msg_info "Building Frontend"
cd ./frontend
pnpm install &>/dev/null
pnpm upgrade &>/dev/null
pnpm run build &>/dev/null
yarn cache clean --silent --force &>/dev/null
yarn install --silent --network-timeout=30000 &>/dev/null
yarn build &>/dev/null
cp -r dist/* /app/frontend
cp -r app-images/* /app/frontend/images
msg_ok "Built Frontend"

View File

@ -141,9 +141,9 @@ msg_ok "Set up Enviroment"
msg_info "Building Frontend"
cd ./frontend
$STD pnpm install
$STD pnpm upgrade
$STD pnpm run build
$STD yarn cache clean --silent --force
$STD yarn install --silent --network-timeout=30000
$STD yarn build
cp -r dist/* /app/frontend
cp -r app-images/* /app/frontend/images
msg_ok "Built Frontend"