Cant generate all.css file from sass files with flask-assets
问题 I became tired of using css in my flask app so I decided to move to scss with flask assets https://github.com/miracle2k/flask-assets. I added this in my app.py file: from flask_assets import Environment, Bundle assets = Environment(app) assets.debug = True assets.url = app.static_url_path scss = Bundle('sass/foo.scss', 'sass/bar.scss', filters='pyscss', output='gen/all.css') assets.register('scss_all', scss) If I understand correctly, these lines are supposed to go check my static/sass folder