Home page Error - vaadin 24.4

Greetings team, has anyone experienced this problem with vaadin 24.4 after a successful login? http://localhost:8080/@fontsource/roboto?continue. It seems to be redirecting to this url in styles.css: ‘@import url(’@fontsource/roboto’); ’

Hi,
I think ‘url’ part is the issue. Try:

@import "@fontsource/roboto"

Hi Herberts,
Thanks for your feedback.

Default file:
@import url(‘@fontsource/roboto’); html {

//some code here
}

Changed to this:

@import url ‘@fontsource/roboto’; html {

...
//some code here 

}
I have tried your approach and it redirects to : http://localhost:8080/?continue. Instead of: http://localhost:8080 which should be an automatic behaviour for a home page/view referenced with:
@Route(value = “”, layout = MainLayout.class).

Note: This behaviour only occurs while creating the app via Vaadin starter.

That’s Spring Security’s RequestCache. You can find more about it here: Architecture :: Spring Security