We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b5b27 commit 41fa792Copy full SHA for 41fa792
vaadin-spring/src/main/java/com/vaadin/flow/spring/VaadinServletContextInitializer.java
@@ -133,7 +133,10 @@ public class VaadinServletContextInitializer
133
*/
134
private static final List<String> DEFAULT_SCAN_ONLY = Stream
135
.of(Component.class.getPackage().getName(),
136
- Theme.class.getPackage().getName(), "com.vaadin.shrinkwrap")
+ Theme.class.getPackage().getName(),
137
+ // LitRenderer uses script annotation
138
+ "com.vaadin.flow.data.renderer",
139
+ "com.vaadin.shrinkwrap")
140
.collect(Collectors.toList());
141
142
/**
0 commit comments