Renamed frontend/web/app to site

- This leaves us room to bring the frontend app in as app.js
This commit is contained in:
Hannah Wolfe 2021-10-21 19:43:48 +01:00
parent faea2da596
commit 2d0b5c872f
No known key found for this signature in database
GPG Key ID: 9F8C7532D0A6BA55
3 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ class Bridge {
reloadFrontend() {
const apiVersion = this.getFrontendApiVersion();
debug('reload frontend', apiVersion);
const siteApp = require('./frontend/web/app');
const siteApp = require('./frontend/web/site');
siteApp.reload({apiVersion});
}
}

View File

@ -1 +1 @@
module.exports = require('./app');
module.exports = require('./site');