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(
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user