I have a JSF project with vendor libraries inside the Resource folder.
When I do this,
<h:outputStylesheet name="vendor/bootstrap/dist/css/bootstrap.min.css" />
.. it outpus
<link type="text/css" rel="stylesheet" href="/InternalWeb_war_exploded/javax.faces.resource/vendor/bootstrap/dist/css/bootstrap.min.css.xhtml" />
... which works. But stuff referenced in the CSS such as web fonts does not load because it doesn't have the .xhtml suffix automatically added to it.
How should I best deal with this?