Skip to content

Commit

Permalink
Merge pull request #353 from Renumics/fix/cant-load-modules
Browse files Browse the repository at this point in the history
Fix relative route for plugins
  • Loading branch information
druzsan authored Nov 10, 2023
2 parents 096d8ce + 436e808 commit 8780c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renumics/spotlight/backend/apis/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def _() -> List[Plugin]:
name=p.name,
priority=p.priority,
dev=p.dev,
entrypoint=f"api/plugins/{p.name}/main.js"
entrypoint=f"../api/plugins/{p.name}/main.js"
if p.frontend_entrypoint
else None,
)
Expand Down

0 comments on commit 8780c13

Please sign in to comment.