Merge branch 'development'

This commit is contained in:
Methapon2001 2023-11-30 16:43:26 +07:00
commit 32ba0b2cd9
No known key found for this signature in database
GPG key ID: 849924FEF46BD132

View file

@ -26,6 +26,7 @@ RegisterRoutes(router);
app.use(swaggerSpecs.basePath, router);
app.use(errorHandler);
app.use(express.static("static"));
app.use((_req, res, _next) => {
res.sendFile(`${process.cwd()}/static/index.html`);
});