Hi again folks,
I have a jupyterhub that I am setting up and have custom authentication and css on it. I am also trying to get a custom extension installed on the single-user docker containers launched by the hub and that is where the problem is. The extension appears to be installed based on this returning true
import notebook
notebook.nbextensions.check_nbextension('genomespace', user=True)
However in the notebook page it cannot load the js or css for the extension widgets. What seems to be the issue is the path to the js/css based on the 404's in the console. The issue seems to be that the page is looking for
while I can actually access it in the spawned single user at
which is actually passed on to the spawned container.
Is this something that can be controlled via config or do I need to install the extension on the hub as well/instead of in the container?
Thanks