Browse Source

allow proxying to sonarcloud

tags/7.5
Stas Vilchik 6 years ago
parent
commit
7bbf218b9f
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      server/sonar-web/scripts/start.js

+ 3
- 3
server/sonar-web/scripts/start.js View File

@@ -105,9 +105,9 @@ function runDevServer(compiler, host, port, protocol) {
disableDotRule: true
},
proxy: {
'/api': proxy,
'/static': proxy,
'/integration': proxy
'/api': { target: proxy, changeOrigin: true },
'/static': { target: proxy, changeOrigin: true },
'/integration': { target: proxy, changeOrigin: true }
}
});


Loading…
Cancel
Save