fix: linting errors

This commit is contained in:
Avraham Sakal
2025-06-29 15:21:40 -04:00
parent 5ef118e9bc
commit e0c5329ff6
+3 -3
View File
@@ -18,13 +18,13 @@ nodeApp.use(compress());
nodeApp.use( nodeApp.use(
"/*", "/*",
serveStatic({ serveStatic({
root: `./dist/client/`, root: "./dist/client/",
}), }),
); );
nodeApp.route("/", app!); nodeApp.route("/", app);
const port = envs.PORT ? parseInt(envs.PORT, 10) : 3000; const port = envs.PORT ? Number.parseInt(envs.PORT, 10) : 3000;
console.log(`Server listening on http://localhost:${port}`); console.log(`Server listening on http://localhost:${port}`);
serve({ serve({