Update build-wrapper.sh

This commit is contained in:
kleap-admin 2026-01-18 13:40:08 +00:00
parent cea5d3417d
commit 620d6c70d5
1 changed files with 15 additions and 0 deletions

15
build-wrapper.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
# BUILD WRAPPER - Show real errors, fail properly
# This script tries multiple build strategies but FAILS if none work
set -e # Exit on any error
echo "🚀 Starting build..."
# Try normal build first
echo "Attempting build with all checks..."
npm run build:normal
echo "✅ Build succeeded!"
exit 0