Link to Flask static files with url_for

You have by default the static endpoint for static files. Also Flask application has the following arguments: static_url_path: can be used to specify a different path for the static files on the web. Defaults to the name of the static_folder folder. static_folder: the folder with static files that should be served at static_url_path. Defaults to … Read more