prepare.sh: correct build order in prepare script for frontend and backend

This commit is contained in:
Carlos Santos 2025-05-14 13:18:14 +02:00
parent e9f9dbeb04
commit 0870a0b459

View File

@ -8,14 +8,14 @@ npm install
npm run sync-ce npm run sync-ce
cd .. cd ..
# Build backend # Build frontend
cd backend cd frontend
npm install npm install
npm run build:prod npm run build:prod
cd .. cd ..
# Build frontend # Build backend
cd frontend cd backend
npm install npm install
npm run build:prod npm run build:prod
cd .. cd ..