diff --git a/routes/index.ts b/routes/index.ts
index 9574359..920d834 100644
--- a/routes/index.ts
+++ b/routes/index.ts
@@ -1,9 +1,14 @@
-// @ts-nocheck
-import { Router } from 'express';
-const indexRouter = Router();
+import {
+ Router,
+ type Request,
+ type Response,
+ type NextFunction,
+} from 'express';
-indexRouter.get('/', async (req, res) => {
- // router for future use
+const router = Router();
+
+router.get('/', (_req: Request, _res: Response, next: NextFunction) => {
+ next();
});
-export { indexRouter };
+export default router;
diff --git a/server.ts b/server.ts
index 529d516..35c82b5 100644
--- a/server.ts
+++ b/server.ts
@@ -16,7 +16,7 @@ import morgan from 'morgan';
import serveFavicon from 'serve-favicon';
import serveStatic from 'serve-static';
-import { indexRouter } from './routes/index.ts';
+import indexRouter from './routes/index.ts';
const BASE_DIR = join(import.meta.dir, 'public');
const PORT = process.env['PORT'] ?? 3000;
diff --git a/src/game/web/clients/starlike/index.html b/src/game/web/clients/starlike/index.html
index 220b63f..8176489 100644
--- a/src/game/web/clients/starlike/index.html
+++ b/src/game/web/clients/starlike/index.html
@@ -8,7 +8,7 @@
-
+