sprinklers3/server/app/serveApp.ts

9 lines
210 B
TypeScript
Raw Normal View History

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