fix(app): issues with the imports caused by the ts.config

This commit is contained in:
2025-09-07 11:02:00 -05:00
parent 766bdd1830
commit 52888246ff

View File

@@ -69,23 +69,18 @@ const main = async () => {
app.use(
basePath + "/test",
express.static(join(__dirname, "../../controller"))
express.static(join(__dirname, "../controller"))
);
}
// docs and api stuff
app.use(
basePath + "/d",
express.static(join(__dirname, "../../lstDocs/build"))
express.static(join(__dirname, "../lstDocs/build"))
);
app.use(
basePath + "/app",
express.static(join(__dirname, "../../frontend/dist"))
);
app.use(
basePath + "/test",
express.static(join(__dirname, "../../frontend/dist"))
express.static(join(__dirname, "../frontend/dist"))
);
// register app