mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-22 17:06:42 +00:00
fix bug:查询设计器不显示 #2753
This commit is contained in:
parent
ffa3c914c3
commit
9f55069aa4
@ -328,6 +328,8 @@ module.exports = {
|
||||
if (this.settings.initBuilderRouter) {
|
||||
return;
|
||||
}
|
||||
this.settings.initBuilderRouter = true;
|
||||
try {
|
||||
const router = express.Router();
|
||||
let publicPath = require.resolve("@steedos/service-charts/package.json");
|
||||
publicPath = publicPath.replace("package.json", 'webapp');
|
||||
@ -338,6 +340,10 @@ module.exports = {
|
||||
const cacheTime = 86400000 * 1; // one day
|
||||
router.use(`${routerPath}/builder`, express.static(publicPath, { maxAge: cacheTime }));
|
||||
WebApp.rawConnectHandlers.use(router);
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
this.settings.initBuilderRouter = false;
|
||||
}
|
||||
}
|
||||
},
|
||||
getDataSourceType: {
|
||||
|
Loading…
Reference in New Issue
Block a user