Use @import ‘fontawesome-all.min.css’; in main.css appears to be incompatible with Grav’s CSS pipeline option. Using this option greatly improves lighthouse performance and testing, but when I activate it, in the Editorial theme (which calls Fontawesome fonts with the @import option), these fonts do not appear.
The only option I have to use the CSS pipeline option is to add the sources in base.html.twig, like any other assets:
{% do assets.addCss('theme://assets/css/fontawesome-all.min.css') %}
Is this a Grav bug or am I doing something wrong in the site settings?