Browse Source

Make override urls configurable (#5503)

Steven Silvester 6 years ago
parent
commit
cd265a43e8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      jupyterlab/labapp.py

+ 2 - 2
jupyterlab/labapp.py

@@ -318,9 +318,9 @@ class LabApp(NotebookApp):
     default_url = Unicode('/lab', config=True,
         help="The default URL to redirect to from `/`")
 
-    override_static_url = Unicode('', help=('The override url for static lab assets, typically a CDN.'))
+    override_static_url = Unicode('', config=True, help=('The override url for static lab assets, typically a CDN.'))
 
-    override_theme_url = Unicode('', help=('The override url for static lab theme assets, typically a CDN.'))
+    override_theme_url = Unicode('', config=True, help=('The override url for static lab theme assets, typically a CDN.'))
 
     app_dir = Unicode(get_app_dir(), config=True,
         help="The app directory to launch JupyterLab from.")