In every css from external projects I have to replace url like this:
url(image.jpg)
to
url(../image.jpg)
Maybe that’s connected with the way I have to include css with trailing slash:
<link rel="stylesheet" type="text/css" href="/project1/style.css/" th:href="@{ /project1/style.css/ }" />
You don’t need to include the extra
/Try this: