diff --git a/Services/server/src/app.ts b/Services/server/src/app.ts index b632f10..33ad44b 100644 --- a/Services/server/src/app.ts +++ b/Services/server/src/app.ts @@ -27,10 +27,10 @@ RegisterRoutes(router); app.use(swaggerSpecs.basePath, router); app.use(errorHandler); -app.use(express.static('static')) -app.get('*',(req,res)=>{ - res.sendFile(`${process.cwd()}/static/index.html`) -}) +app.use(express.static("static")); +app.get("*", (_req, res) => { + res.sendFile(`${process.cwd()}/static/index.html`); +}); app.listen(PORT, "0.0.0.0", () => console.log(`[APP] Application is running on http://localhost:${PORT}`),