habitica-self-host/website/server/libs/client.js

5 lines
156 B
JavaScript
Raw Normal View History

2017-08-24 16:19:31 +00:00
const ROOT = `${__dirname}/../../../`;
export function serveClient (expressRes) {
return expressRes.sendFile('./dist-client/index.html', {root: ROOT});
}