Skip to content

Commit

Permalink
Merge pull request #993 from trungleduc/bugfix/wrong-base-url
Browse files Browse the repository at this point in the history
Fix wrong base_url
  • Loading branch information
jtpio authored Oct 5, 2021
2 parents 4cf7eaf + 78c2a2a commit e99355f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voila/notebook_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async def initialize(self, **kwargs):
self.theme = theme_override
# render notebook to html
self.resources = {
'base_url': '/',
'base_url': self.base_url,
'nbextensions': nbextensions,
'theme': self.theme,
'template': self.template_name,
Expand Down

0 comments on commit e99355f

Please sign in to comment.