Added wildcard route for react router
This commit is contained in:
parent
d4164b9050
commit
321738a517
@ -5,4 +5,7 @@ import * as paths from "paths";
|
|||||||
|
|
||||||
export default function serveApp(app: Express) {
|
export default function serveApp(app: Express) {
|
||||||
app.use(serveStatic(paths.appBuildDir));
|
app.use(serveStatic(paths.appBuildDir));
|
||||||
|
app.get("/*", (req, res) => {
|
||||||
|
res.sendFile(path.join(paths.publicDir, "index.html"));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user