diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2017-03-29 09:41:51 +0200 |
---|---|---|
committer | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-03-29 16:01:38 +0200 |
commit | 90206399e25369da8d7783a553c8ed688680997e (patch) | |
tree | 577e4373f4551bbe9608cade37a945ac09a95ac4 /server/sonar-web/public | |
parent | 0b79a91a3f9ba4f5da9068a96a712db44c4524af (diff) | |
download | sonarqube-90206399e25369da8d7783a553c8ed688680997e.tar.gz sonarqube-90206399e25369da8d7783a553c8ed688680997e.zip |
fix public paths for js chunks
Diffstat (limited to 'server/sonar-web/public')
-rw-r--r-- | server/sonar-web/public/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/public/index.html b/server/sonar-web/public/index.html index 34546eedeb8..f616d690eb0 100644 --- a/server/sonar-web/public/index.html +++ b/server/sonar-web/public/index.html @@ -23,7 +23,7 @@ <meta name="msapplication-TileImage" content="%WEB_CONTEXT%/mstile-512x512.png" /> <% for (var css in htmlWebpackPlugin.files.css) { %> - <link href="%WEB_CONTEXT%<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet"> + <link href="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet"> <% } %> <title>SonarQube</title> </head> @@ -31,7 +31,7 @@ <div id="content"></div> <script>window.baseUrl = '%WEB_CONTEXT%';</script> <% for (var chunk in htmlWebpackPlugin.files.chunks) { %> - <script src="%WEB_CONTEXT%<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script> + <script src="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script> <% } %> </body> </html> |