Skip to content

Commit

Permalink
fix(web-multi-logger): fix path to xterm static files
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Aug 6, 2018
1 parent c71ef16 commit 803a22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/web-multi-logger/src/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class Logger {
return res.json(this.tabs);
});

this.app.use('/xterm', express.static(path.resolve(require.resolve('xterm'), '../../dist')));
this.app.use('/xterm', express.static(path.resolve(require.resolve('xterm'), '../../../dist')));
this.app.use(express.static(path.resolve(__dirname, '..', 'static')));
(this.app as any).ws('/sub', () => {});
}
Expand Down

0 comments on commit 803a22f

Please sign in to comment.