diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-07-18 10:04:42 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-07-31 11:27:51 +0200 |
commit | 15b2f0c05af2620fc65ca850f2d6ae4b50683d05 (patch) | |
tree | ffe4e114f3d582e9ba1534ec4c9837bb797f539e /server | |
parent | b78aa1511c2317498fbe4873453d06dc63b669db (diff) | |
download | sonarqube-15b2f0c05af2620fc65ca850f2d6ae4b50683d05.tar.gz sonarqube-15b2f0c05af2620fc65ca850f2d6ae4b50683d05.zip |
proxy /static
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/scripts/start.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/scripts/start.js b/server/sonar-web/scripts/start.js index ab7347d9444..97535e1357a 100644 --- a/server/sonar-web/scripts/start.js +++ b/server/sonar-web/scripts/start.js @@ -98,7 +98,8 @@ function runDevServer(compiler, host, port, protocol) { proxy: { '/api': proxy, '/fonts': proxy, - '/images': proxy + '/images': proxy, + '/static': proxy }, setup(app) { app.use(errorOverlayMiddleware()); |