Updated dependencies

This commit is contained in:
2025-07-26 03:57:44 +10:00
parent 0bc7cb11f0
commit 174a56ac53
3 changed files with 628 additions and 515 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ app.use('/admin', require('./admin'));
app.use('/auth', require('./auth'));
//error on access
app.get('*', (req, res) => {
app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/auth-server');
});