2017-09-08 10:36:10 -06:00
|
|
|
import { Express } from "express";
|
2017-10-03 13:07:05 -06:00
|
|
|
import * as serveStatic from "serve-static";
|
2017-09-07 12:26:23 -06:00
|
|
|
|
2017-10-03 13:07:05 -06:00
|
|
|
import * as paths from "paths";
|
2017-09-07 12:26:23 -06:00
|
|
|
|
2017-09-08 10:36:10 -06:00
|
|
|
export default function serveApp(app: Express) {
|
2017-10-03 13:07:05 -06:00
|
|
|
app.use(serveStatic(paths.appBuildDir));
|
2017-09-07 12:26:23 -06:00
|
|
|
}
|