diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/api/webapp.py')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/api/webapp.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py index 19d22d4..e11e718 100644 --- a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py +++ b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py @@ -28,7 +28,13 @@ router = APIRouter(tags=["webapp"]) # which is the failure this list exists to prevent, and it is silent. _ASSETS = ("style.css", "keyderive.js", "crypto.js", "transport.js", "app.js", "i18n.js", "downloads.js", "transfers.js", "zipstream.js", - "platform.js", "meshbay-m.png") + "platform.js", "meshbay-m.png", + # Split out of app.js by the group-page refactor — each imported by + # app.js or group-page.js, so a change to any of them is a change + # to what the browser must fetch. + "icon.js", "file-utils.js", "hub-client.js", "apps.js", + "chat-app.js", "files-app.js", "video-player.js", + "group-settings.js", "group-page.js") def _asset_version() -> str: |