Created
December 7, 2016 10:42
-
-
Save squadwuschel/c13a4d6dfca76f3e66daa009269181aa to your computer and use it in GitHub Desktop.
Compillierte index.html im wwwroot für Angular 2 mit webpack 2
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
<title>Angular2 Mit WebPack 2</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" /> | |
<!-- base url --> | |
<base href="/"> | |
<link href="http://localhost:3000/wwwroot/vendors.css" rel="stylesheet"> | |
</head> | |
<body> | |
<app> | |
<div class="well well-lg"> | |
<h3 class="text-center"><strong>App is Loading .... please wait .... </strong></h3> | |
<p class="text-center"> | |
<i class="fa fa-spinner fa-pulse fa-3x fa-fw"></i> | |
</p> | |
</div> | |
</app> | |
<script type="text/javascript" src="http://localhost:3000/wwwroot/polyfills.bundle.js"> | |
</script> | |
<script type="text/javascript" src="http://localhost:3000/wwwroot/vendors.bundle.js"> | |
</script> | |
<script type="text/javascript" src="http://localhost:3000/wwwroot/app.bundle.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment