-
-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Labels
Description
jupyterlab_server/jupyterlab_server/config.py
Lines 252 to 254 in bca8978
labextensions_url = Unicode("", help="The url for federated JupyterLab extensions").tag( | |
config=True | |
) |
matches
jupyterlab_server/jupyterlab_server/config.py
Lines 321 to 323 in bca8978
@default("labextensions_url") | |
def _default_labextensions_url(self) -> str: | |
return ujoin(self.app_url, "extensions/") |
but
jupyterlab_server/jupyterlab_server/config.py
Line 241 in bca8978
templates_dir = Unicode("", help="The application templates directory.").tag(config=True) |
does not
jupyterlab_server/jupyterlab_server/config.py
Lines 317 to 319 in bca8978
@default("template_dir") | |
def _default_template_dir(self) -> str: | |
return DEFAULT_TEMPLATE_PATH |
BwL1289