Add a route prefix to the route handler.

This commit is contained in:
Dave Smith-Hayes 2024-03-03 22:17:20 -05:00
parent 134c9904c0
commit 0cd8840ac8

View File

@ -12,6 +12,6 @@ app.get('/', async (c) => {
});
// Handlers
app.route('/*', LoginHandler);
app.route('/user', LoginHandler);
export default app;