import dash
import dash_bootstrap_components as dbc



external_stylesheets = ["assets/bWLwgP.css",dbc.themes.BOOTSTRAP]

app = dash.Dash(
    __name__,
    external_stylesheets=external_stylesheets,
    meta_tags=[
        {"name": "viewport", "content": "width=device-width, initial-scale=1"},
    ],
    **{
    #'url_base_pathname':"/",
    # as the proxy server will remove the prefix
   # 'routes_pathname_prefix': '/Atlas-X/',
   # 'routes_prefix_pathname':'/Atlas-X/',
    'serve_locally':True,

    # the front-end will prefix this string to the requests
    # that are made to the proxy server
    'requests_pathname_prefix': '/Atlas-X/',
    'title':"Atlas-X"

}
)
app.config.suppress_callback_exceptions = True
