Hey, in the tutorials it says that i have to put my CSS file in the webapp/frontend map. But that map does not exsist anymore in the webapp directory.
Where am i supposed to put it now because i tried the frontend map in target, andthe webapp map itself but it does not apply anything and gives errors.
See [This informative Stackoverflow post]
(https://stackoverflow.com/a/57553974/3441504) to find out correct placement of static files like css, js, images - and also how to import them.
In your case, put the css file (without <custom-style><style></style></custom-style> html wrapping - just pure css!) in {project} > frontend folder, then import it in the MainView using @CssImport("./style.css")
Kaspar Scherrer:
See [This informative Stackoverflow post]
(https://stackoverflow.com/a/57553974/3441504) to find out correct placement of static files like css, js, images - and also how to import them.
In your case, put the css file (without <custom-style> html wrapping - just pure css!) in {project} > frontend folder, then import it in the MainView using @CssImport("./style.css")