Search code examples
nunjucks

javascript : css file path problem using nunjucks


enter image description here

I set the path appropriately, but there is an error. It comes out well when you proceed with normal html, not nunjucks.


Solution

  • Put your stylesheet in block

    {% block css %}
    <link rel="stylesheet" href="app.css" />
    {% endblock %}
    

    for more information check the documentation block section