fix hard links for new client (#8986)

This commit is contained in:
Matteo Pagliazzi
2017-08-24 18:19:31 +02:00
committed by GitHub
parent 5c89451985
commit 82c912237b
4 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
const ROOT = `${__dirname}/../../../`;
export function serveClient (expressRes) {
return expressRes.sendFile('./dist-client/index.html', {root: ROOT});
}