I have a css and javascript document both in flask’s /static/
that were delivered fine prior to using dash-auth==1.0.0
with
app_vndr.css.append_css({'external_url': '/static/vendor.css'})
app_vndr.scripts.append_script({'external_url': '/static/vendor.js'})
Now that I’ve added dash-auth
with
auth = dash_auth.BasicAuth(
app_vndr,
[['<uid>', '<pwd>']]
)
both documents return status 403.
If possible, I’d like to avoid having these being in-line in the dash layout. Is this possible without getting 403 errors?