Browse Source

fix: Error 'TypeError: Missing parameter name ...' when running TB_ENABLE_PROXY=true

pull/14493/head
samuel 10 months ago
committed by GitHub
parent
commit
c13be6e151
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      msa/web-ui/server.ts

4
msa/web-ui/server.ts

@ -81,12 +81,12 @@ let connections: Socket[] = [];
}
}
});
app.all('/api/*', (req, res) => {
app.all('/api/*splat', (req, res) => {
logger.debug(req.method + ' ' + req.originalUrl);
apiProxy.web(req, res);
});
app.all('/static/rulenode/*', (req, res) => {
app.all('/static/rulenode/*splat', (req, res) => {
apiProxy.web(req, res);
});

Loading…
Cancel
Save