Skip to content

Commit a38f58b

Browse files
authored
chore: Disable proxy endpoint (#3681)
1 parent c81ceac commit a38f58b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { makeHandleRequest, serveStaticApp, serveMonaco } from './common';
2-
import { proxyHandler } from './proxy.js';
32
import { handleTracking } from './tracking.js';
43
import jsyaml from 'js-yaml';
54
//import { requestLogger } from './utils/other'; //uncomment this to log the outgoing traffic
@@ -55,7 +54,8 @@ if (process.env.NODE_ENV === 'development') {
5554
app.use(cors({ origin: '*' }));
5655
}
5756

58-
app.use('/proxy', proxyHandler);
57+
// Uncomment after: https://github.com/kyma-project/busola/issues/3680
58+
// app.use('/proxy', proxyHandler);
5959

6060
let server = null;
6161

0 commit comments

Comments
 (0)