You can use gradle generate npm task:
./gradlew generateor directly run:
cd frontend
npm run generateSimply run:
./gradlew shadowJarRunning frontend with auto-reload is simple, however, if you didn't already do this, you need to install all dependencies with postInstall task:
./gradlew postInstalland then run:
cd frontend
npm run devNote
Any backend api calls won't work unless you run the backend.
First, you need to execute run task:
./gradlew runand then launch auto-reload in a separate terminal:
./gradlew -t jar