I have created a Flask/Dash application and I am currently linking it to an external bootstrap stylesheet as shown below:
dash_app = dash.Dash(server=server,
routes_pathname_prefix='/dashapp/',
external_stylesheets=[dbc.themes.BOOTSTRAP],
)
Now, I want to make some CSS changes, so I downloaded the bootstrap stylesheet from
https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css
, saved it in one of my folders, and tried accessing it locally like this:
BS = "/static/dist/css/bootstrap.min.css"
dash_app = dash.Dash(server=server,
routes_pathname_prefix='/dashapp/',
external_stylesheets=[BS],
)
However, it seems that my app is not linked to the local stylesheet at all. Is there something else I need to do when linking the app locally to a bootstrap stylesheet?