aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/public/index.html
blob: cf8fd6ce5a4f4c664c16ed201fae1dec16759e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" charset="UTF-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link href="%WEB_CONTEXT%/favicon.ico" rel="shortcut icon" type="image/x-icon">
    <% for (var css in htmlWebpackPlugin.files.css) { %>
    <link href="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
    <% } %>
    <title>SonarQube</title>
  </head>
  <body>
    <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>
    <% } %>
  </body>
</html>