Added wildcard route for react router

This commit is contained in:
Alex Mikhalev 2018-06-27 12:12:14 -06:00
parent d4164b9050
commit 321738a517

View File

@ -5,4 +5,7 @@ import * as paths from "paths";
export default function serveApp(app: Express) {
app.use(serveStatic(paths.appBuildDir));
app.get("/*", (req, res) => {
res.sendFile(path.join(paths.publicDir, "index.html"));
});
}