aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/public/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/public/index.html')
-rw-r--r--server/sonar-web/public/index.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/server/sonar-web/public/index.html b/server/sonar-web/public/index.html
new file mode 100644
index 00000000000..0864aeb17d2
--- /dev/null
+++ b/server/sonar-web/public/index.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <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> \ No newline at end of file