Skip to content

Commit

Permalink
chore: Disable proxy endpoint (#3681)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrCherry97 authored Feb 11, 2025
1 parent c81ceac commit a38f58b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { makeHandleRequest, serveStaticApp, serveMonaco } from './common';
import { proxyHandler } from './proxy.js';
import { handleTracking } from './tracking.js';
import jsyaml from 'js-yaml';
//import { requestLogger } from './utils/other'; //uncomment this to log the outgoing traffic
Expand Down Expand Up @@ -55,7 +54,8 @@ if (process.env.NODE_ENV === 'development') {
app.use(cors({ origin: '*' }));
}

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

let server = null;

Expand Down

0 comments on commit a38f58b

Please sign in to comment.