diff options
author | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-03-27 12:04:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 12:04:48 +0200 |
commit | 7d963d84f40ee3db3b51c557fb596aa9febf82bb (patch) | |
tree | 7f761f198fae4ad898f4dd98703923921520098b /server/sonar-web/public | |
parent | 48699b502c866ea5a309c57f8ad5e737d1933280 (diff) | |
download | sonarqube-7d963d84f40ee3db3b51c557fb596aa9febf82bb.tar.gz sonarqube-7d963d84f40ee3db3b51c557fb596aa9febf82bb.zip |
optimize js bundles (#1855)
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 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> |