According to the Flask readme, blueprint static files are accessible at blueprintname/static. But for some reason, it doesn\'t work.
blueprintname/static
My blueprint is lik
I include an argument to the static_url_path parameter to ensure that the Blueprint's static path doesn't conflict with the static path of the main app.
e.g:
admin = Blueprint('admin', __name__, static_folder='static', static_url_path='/static/admin')