diff options
Diffstat (limited to 'server/sonar-web/public/index.html')
-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 f616d690eb0..34546eedeb8 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> |