fix(app): issues with the imports caused by the ts.config
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user