From 793a423c2354b1cae44359e92d593b8ef56f12e2 Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Mon, 22 Dec 2025 09:03:41 -0300 Subject: [PATCH] docs(readme): remove special configuration when using Spring --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 7107456..6f4bc44 100644 --- a/README.md +++ b/README.md @@ -179,16 +179,3 @@ element.addEventListener("click", event -> { // ... }).addEventData("event.detail"); ``` - - -## Special configuration when using Spring - -By default, Vaadin Flow only includes `com/vaadin/flow/component` to be always scanned for UI components and views. For this reason, the add-on might need to be allowed in order to display correctly. - -To do so, just add `com.flowingcode` to the `vaadin.allowed-packages` property in `src/main/resources/application.properties`, like: - -``` -vaadin.allowed-packages = com.vaadin,org.vaadin,dev.hilla,com.flowingcode -``` - -More information on Spring scanning configuration [here](https://vaadin.com/docs/latest/integrations/spring/configuration/#configure-the-scanning-of-packages).