push auths

merge-requests/4/head
Matthew 2020-08-30 21:43:41 -04:00
parent 88728802a8
commit 26f7b9593a
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,6 @@ export default class Server {
}
private async loadRoutes(): Promise<void> {
this.app.use('/static', express.static(`${__dirname}/../../dist/api/static`));
const routes = await fs.readdir(`${__dirname}/../api/routes`);
routes.forEach(async (routeFile) => {
if (routeFile === 'index.js') return;
@ -51,6 +50,7 @@ export default class Server {
this.client.util.handleError(error);
}
});
this.app.use('/static', express.static('/opt/CloudServices/dist/api/static'));
}
private connect(): void {