diff --git a/app/src/index.tsx b/app/src/index.tsx index 53f9fd8..ea8f232 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -12,6 +12,6 @@ app.get('/', async (c) => { }); // Handlers -app.route('/user', LoginHandler); +app.route('/*', LoginHandler); export default app;