Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
"Lost" icons after building custom app widgetset (charts,spring boot, .jar
Hi, I just added Vaadin Charts to my Spring Boot based vaadin app, that uses a Valo-based theme. I created my app's .gwt.xml, added the maven tools, and set the explicit @WidgetSet on my UI class. I'm able to use Vaadin Charts now, but now my FontIcon-based icons are no longer showing up. Is there something else I need to do?
My .gwt.xml file is plain vanilla
...
<inherits name="com.vaadin.DefaultWidgetSet" />
<inherits name="com.vaadin.addon.charts.Widgetset" />
...
Issue solved. I'd experimented with using the CDN approach, and while I'd removed the beans and plugin configuration, the dependencies were still in my POM. Apparently the 'org.peimari:dawn' dependency pulls in some dependencies that caused the issue.
Thanks Henri K!