I have symfony 4.1 installed via composer and the asset
component.
I have a css file at assets/css/dashboard.css
and in my templates/base.html.twig
I included this:
{% block stylesheets %}
<link href="{{ asset('css/dashboard.css') }}" rel="stylesheet" />
{% endblock %}
I haven't modified anything, but somehow the template is not getting called.
I tried many variations of the path, adding slashes, dots thinking maybe the path is wrong but nothing.
The css file has no issue, I dumped it's contents and pasted it inside my template's <style></style>
tags and it works.
I don't know what is going on