Skip to content

Commit a68623e

Browse files
authored
Merge pull request #324 from cmd-ntrf/disable_docs
Add documentation on how-to disable the extension
2 parents c78d363 + bf4e29c commit a68623e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,31 @@ extension, making this step only needed for JupyterLab 2.
6565
jupyter labextension install @jupyterlab/server-proxy
6666
```
6767

68+
## Disable
69+
70+
### Server extension
71+
72+
``` 
73+
jupyter serverextension disable jupyter_server_proxy
74+
```
75+
76+
### Notebook classic extension
77+
78+
```
79+
jupyter nbextension disable --py jupyter_server_proxy
80+
```
81+
82+
### JupyterLab extension
83+
84+
Note that the extension name provided to the command (`jupyterlab-server-proxy`) does not correspond
85+
to the extension package name (`@jupyterlab/server-proxy`). The `jupyter labextension list` will
86+
incorrectly report the extension as still being enabled after executing the disable command.
87+
This will be fixed in the next major release of jupyter-server-proxy.
88+
89+
```
90+
jupyter labextension disable jupyterlab-server-proxy
91+
```
92+
6893
## Local development
6994

7095
See [CONTRIBUTING.md](CONTRIBUTING.md).

0 commit comments

Comments
 (0)