I am trying to have a CSS file included in the resulting HTML. My configuration is:
{
"resources": [{
"name": "style.css",
"extract": true,
"files": ["style.css"]
}]
}
And the resulting index.html
has only these includes:<link rel="stylesheet" href="style.css">
While normally it had this:<script src="bridge.js"></script>
<script src="bridge.meta.js"></script>
<script src="Core.js"></script>
<script src="Core.meta.js"></script>
Clearly something is incorrect but I am not sure how to make it so that the default JS files are still linked but the CSS file is also there.
Comment