I recently started working with symfony applications and every day I have new problems that I have to solve, one of them is that my main view of the application does not load the files .css
, I already have them defined within the block: {% block stylesheets %}
And this is how the references:
<link rel="stylesheet" type="text/css" href="{{ asset('bundles/staticpages/css/lib/font-awesome.min.css') }}">
I do not know if I should also install some plugin or library necessary to the web to load correctly.
Could someone tell me how to fix it?
Thank you.