sprinklers3/server/app/serveApp.ts

9 lines
210 B
TypeScript

import { Express } from "express";
import * as serveStatic from "serve-static";
import * as paths from "paths";
export default function serveApp(app: Express) {
app.use(serveStatic(paths.appBuildDir));
}