Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebt3 committed Apr 26, 2024
1 parent 18455a4 commit b03eed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion back/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ app.get('/i18n/:file', (req, res) => {
'Content-Type': 'application/json'
}});
});
app.use(express.static('public'));
app.use('/hrm', express.static('public'));
app.get('*', (req, res) => {
res.sendFile(
path.resolve(__dirname, 'public', 'index.html')
Expand Down

0 comments on commit b03eed8

Please sign in to comment.