|
11 months ago | |
---|---|---|
.. | ||
README.md | 1 year ago | |
dev.bundle | 1 year ago | |
prod.bundle | 11 months ago |
This directory is automatically generated by Vaadin and contains the pre-compiled frontend files/resources for your project (frontend development bundle).
It should be added to Version Control System and committed, so that other developers do not have to compile it again.
Frontend development bundle is automatically updated when needed:
If your project development needs a hot deployment of the frontend changes, you can switch Flow to use Vite development server (default in Vaadin 23.3 and earlier versions):
vaadin.frontend.hotdeploy=true
in application.properties
vaadin-maven-plugin
: <configuration>
<frontendHotdeploy>true</frontendHotdeploy>
</configuration>
jetty-maven-plugin
: <configuration>
<systemProperties>
<vaadin.frontend.hotdeploy>true</vaadin.frontend.hotdeploy>
</systemProperties>
</configuration>
Read more about Vaadin development mode.