mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
6 lines
219 B
JavaScript
6 lines
219 B
JavaScript
const ROOT = `${__dirname}/../../../`;
|
|
|
|
export function serveClient (expressRes) { // eslint-disable-line import/prefer-default-export
|
|
return expressRes.sendFile('./website/client/dist/index.html', { root: ROOT });
|
|
}
|