-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename links to cssAssets and improve test coverage
- Loading branch information
Showing
5 changed files
with
671 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>html-webpack-include-assets-plugin</title> | ||
<!-- CSS Tags --> | ||
<% for (var cssIndex = 0; cssIndex < htmlWebpackPlugin.files.css.length; cssIndex++) { %> | ||
<link href="<%= htmlWebpackPlugin.files.css[cssIndex] %>"> | ||
<% } %> | ||
</head> | ||
|
||
<body> | ||
<noscript>This page requires Javascript to be enabled.</noscript> | ||
<!-- Application Root --> | ||
<div id="root"> | ||
<!-- Loading --> | ||
<div id="loading" class="container d-none"> | ||
Loading... | ||
</div> | ||
<script id="loading-script" type="text/javascript"> | ||
setTimeout(function () { | ||
var loadingElement = document.getElementById("loading"); | ||
if (loadingElement !== undefined && loadingElement !== null) { | ||
loadingElement.className = "container"; | ||
} | ||
}, 750); | ||
</script> | ||
</div> | ||
<!-- Script Tags --> | ||
<% for (var jsIndex = 0; jsIndex < htmlWebpackPlugin.files.js.length; jsIndex++) { %> | ||
<script src="<%= htmlWebpackPlugin.files.js[jsIndex] %>"></script> | ||
<% } %> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.