Skip to content

Commit

Permalink
hardcode base path
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadim Ritter committed Aug 26, 2024
1 parent bcd0ea0 commit 85e1561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ app.get("/", (req: Request, res: Response) => {

});

app.get("*", (req: Request, res: Response) => {
app.get(ENV.BASE_PATH + "*", (req: Request, res: Response) => {
res.sendFile(mainIndexPath);
});

Expand Down

0 comments on commit 85e1561

Please sign in to comment.