There is a missing css file required in the main layout file: templates/base.html.twig.
How to reproduce scenario
Install the project
Log in with any user
Look at the error messages in the developer tools
Possible solutions
The file does not exist at all, so either it requires a config in webpack, or the best solution IMO would be to create the webpack config and change the {{ asset('...') }} calls with a proper encore_entry_link_tags/encore_entry_script_tags as per the documentation (https://symfony.com/doc/current/frontend/encore/simple-example.html).
Current Behavior
There is a missing css file required in the main layout file:
templates/base.html.twig
.How to reproduce scenario
Possible solutions
The file does not exist at all, so either it requires a config in webpack, or the best solution IMO would be to create the webpack config and change the
{{ asset('...') }}
calls with a properencore_entry_link_tags
/encore_entry_script_tags
as per the documentation (https://symfony.com/doc/current/frontend/encore/simple-example.html).