prepare.sh: add missing build steps for webcomponent in prepare script

This commit is contained in:
Carlos Santos 2025-05-13 14:34:28 +02:00
parent d8e9f624c3
commit fd224a9aa1

View File

@ -14,6 +14,12 @@ npm install
npm run build:prod
cd ..
// Build webcomponent
cd frontend/webcomponent
npm install
npm run build
cd ../..
# Build frontend
cd frontend
npm install