We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e220b43 commit 224a67eCopy full SHA for 224a67e
voila/server_extension.py
@@ -87,9 +87,8 @@ def _load_jupyter_server_extension(server_app: ServerApp):
87
web_app = server_app.web_app
88
# common configuration options between the server extension and the application
89
90
- voila_configuration = VoilaConfiguration(
91
- parent=server_app, config=load_config_file()
92
- )
+ voila_configuration = VoilaConfiguration(parent=server_app)
+ voila_configuration.config.merge(load_config_file())
93
94
template_name = voila_configuration.template
95
template_paths = collect_template_paths(["voila", "nbconvert"], template_name)
0 commit comments