Fixed bug in file conversion on node, cleaned up warnings

This commit is contained in:
Saud Fatayerji
2023-11-15 15:33:04 +03:00
parent 57415bea85
commit 667583984f
3 changed files with 20 additions and 13 deletions

View File

@@ -4,7 +4,7 @@ const PORT = 8000;
// server-node: backend api
import api from './routes/api/api-controller';
app.use("/api/", api);
app.use("/api", api);
// serve
app.listen(PORT, () => {