mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-31 19:20:25 +00:00
5 lines
156 B
JavaScript
5 lines
156 B
JavaScript
|
|
const ROOT = `${__dirname}/../../../`;
|
||
|
|
|
||
|
|
export function serveClient (expressRes) {
|
||
|
|
return expressRes.sendFile('./dist-client/index.html', {root: ROOT});
|
||
|
|
}
|