This repository was archived by the owner on Oct 24, 2025. It is now read-only.
  
  
  
  
  
Description
hi there!
i have this folder structure:
.app
-- blueprint1
-----templates
-----static
--------css
--------sass
--templates
--static
----css
----sass
when i link the <link rel="stylesheet" type="text/css" href="{{ url_for('blueprint1.static', filename='css/test.sass.css') }}">
it doesnt compile the sass/scss file to css folder in the static/css folder of the blueprint1
am i missing something here? Thanks
% extends "base.html" %}
{% block title %}Test{% endblock title %}
{% block head %}
{{ super() }}
    **<link rel="stylesheet" type="text/css" href="{{ url_for('blueprint1.static', filename='css/test.sass.css')** }}">
{% endblock %}
{% block content %}
<p> Test
{% endblock %}