Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Created December 7, 2016 10:42
Show Gist options
  • Save squadwuschel/c13a4d6dfca76f3e66daa009269181aa to your computer and use it in GitHub Desktop.
Save squadwuschel/c13a4d6dfca76f3e66daa009269181aa to your computer and use it in GitHub Desktop.
Compillierte index.html im wwwroot für Angular 2 mit webpack 2
<!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