They start normally when I launch the flash application directly, but I donโt compile or replace the address in the template when working under uWSGI.
How can I debug this?
EDIT:
code: assets = Environment (application)
... if __name__ == "__main__": assets.register(YAMLLoader(os.path.join(DIR,"assets.yml")).load_bundles()) if os.environ.get("DEBUG_FLASK"): app.run() else: app.run(debug=True)
assets.yml:
style_css: filters: less output: css/style.css contents: - css/style.less
source share