-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (27 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
executable file
·30 lines (27 loc) · 1.5 KB
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
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Storybook+</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="<%= htmlWebpackPlugin.options.links[0] %>" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link href="<%= htmlWebpackPlugin.options.links[1] %>" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<link href="<%= htmlWebpackPlugin.options.links[2] %>" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<% for (const href of htmlWebpackPlugin.files.css) { %>
<link href="<%= href %>" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'">
<% } %>
<script src="<%= htmlWebpackPlugin.options.links[3] %>" type="text/javascript" defer></script>
<% for (const src of htmlWebpackPlugin.files.js) { %>
<script defer src="<%= src %>" type="text/javascript"></script>
<% } %>
</head>
<body>
<noscript aria-hidden="true">
<h1>JavaScript is required!</h1>
<p>In order for this application to function, please <a href="http://www.enable-javascript.com/" target="_blank">enable JavaScript</a>.</p>
</noscript>
<main class="sbplus_wrapper"></main>
</body>
</html>