when making a change in copilot to a component, for example changing a border color. The website immediately reloads the page. I think its because a file gets updated, but it feels odd. After that i need to select the compontent again, search where i was and then i can style the next part. Does anyone has an idea what the reason could be?
Its a spring boot project, vaadin plugin is installed, following intelliJ setting is disabled, i cant find any other setting which could be the reason.
First things first: No, it is not supposed to work that way.
When you change border color or anything else in the theme editor, it updates the CSS file. This is supposed to perform a hot reload (HMR) of only the CSS, regardless of whether you are using a dev bundle or Vite. The file is inside src/main/frontend so IntelliJ is not supposed to do anything when that file changes.
There does seem to be something strange going on though with the latest version, let me have a closer look