blob: 90f0799d8ad4850620cc34b75ad7ab5367505d96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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">
<meta name="application-name" content="SonarQube VSTS Widget" />
<script src="%WEB_CONTEXT%/integration/vsts/js/VSS.SDK.min.js"></script>
<title>SonarQube VSTS Widget</title>
</head>
<body>
<div id="content">
<div class="vsts-loading">
<i class="spinner global-loading-spinner"></i>
</div>
</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>
|