0

Inside my html.html.twig template I've added a stylesheet inside the style elements using this;

{% include directory ~ '/css/base/style.css' %}

Is there a way that I can strip it for all whitespaces? Can I apply the CssOptimizer class to it in any way?

user11448
  • 339
  • 3
  • 8

1 Answers1

0

You could try to use the spaceless Tag

{% spaceless %}
{% include directory ~ '/css/base/style.css' %}
{% endspaceless %}
Stefan Kunze
  • 618
  • 4
  • 14