Skip to content

Commit

Permalink
fix sentence structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jouni authored Nov 13, 2023
1 parent fdadbad commit 2fc705b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/configuration/development-mode/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If your project uses only the standard Vaadin Flow components or third-party Vaa

Adding any custom JavaScript/TypeScript or add-ons with frontend customizations to a project can trigger the frontend re-compilation using Vite during the next start-up of the application. Any new or missing frontend packages are downloaded using npm/pnpm before building. Vaadin automatically does this, and spots the frontend customizations.

Making a new frontend bundle takes time. However, the generated frontend files are compressed to `src/main/bundles/dev.bundle` -- inside the project's root -- can be added to the Version Control System. This allows other developers to fetch the application bundle and thereby run it.
Making a new frontend bundle takes time. However, the generated frontend files are compressed to the `src/main/bundles/prod.bundle` file inside the projects root. This file can be added to the Version Control System, which allows other developers to fetch the application bundle and thereby run it.

The actual bundle files go to the build directory (i.e., `target` for Maven, `build` for Gradle) and are used from there. This way minor changes don't cause multiple files to change and be committed to the Version Control System.

Expand Down

0 comments on commit 2fc705b

Please sign in to comment.