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.
2 parents 9286b71 + c02adbe commit 523f198Copy full SHA for 523f198
.gitignore
@@ -26,7 +26,7 @@ __pycache__
26
.DS_Store
27
\#*#
28
.#*
29
-.coverage
+.coverage*
30
.pytest_cache
31
src
32
jupyter_server/serverapp.py
@@ -1519,6 +1519,8 @@ def init_mime_overrides(self):
1519
# ensure css, js are correct, which are required for pages to function
1520
mimetypes.add_type('text/css', '.css')
1521
mimetypes.add_type('application/javascript', '.js')
1522
+ # for python <3.8
1523
+ mimetypes.add_type('application/wasm', '.wasm')
1524
1525
def shutdown_no_activity(self):
1526
"""Shutdown server on timeout when there are no kernels or terminals."""
0 commit comments