We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81ceac commit a38f58bCopy full SHA for a38f58b
backend/index.js
@@ -1,5 +1,4 @@
1
import { makeHandleRequest, serveStaticApp, serveMonaco } from './common';
2
-import { proxyHandler } from './proxy.js';
3
import { handleTracking } from './tracking.js';
4
import jsyaml from 'js-yaml';
5
//import { requestLogger } from './utils/other'; //uncomment this to log the outgoing traffic
@@ -55,7 +54,8 @@ if (process.env.NODE_ENV === 'development') {
55
54
app.use(cors({ origin: '*' }));
56
}
57
58
-app.use('/proxy', proxyHandler);
+// Uncomment after: https://github.com/kyma-project/busola/issues/3680
+// app.use('/proxy', proxyHandler);
59
60
let server = null;
61
0 commit comments