Closed rtiagom closed 4 months ago
As seen in another issue, the following works:
{% if cfg!(debug_assertions) %} blah blah blah {% endif %}
How to do the same for feature?
{% if cfg!(feature="web") %} blah blah blah {% endif %}
My bad, I had a syntax error. It does work as expected.
As seen in another issue, the following works:
How to do the same for feature?