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( app.use(
basePath + "/test", basePath + "/test",
express.static(join(__dirname, "../../controller")) express.static(join(__dirname, "../controller"))
); );
} }
// docs and api stuff // docs and api stuff
app.use( app.use(
basePath + "/d", basePath + "/d",
express.static(join(__dirname, "../../lstDocs/build")) express.static(join(__dirname, "../lstDocs/build"))
); );
app.use( app.use(
basePath + "/app", basePath + "/app",
express.static(join(__dirname, "../../frontend/dist")) express.static(join(__dirname, "../frontend/dist"))
);
app.use(
basePath + "/test",
express.static(join(__dirname, "../../frontend/dist"))
); );
// register app // register app