Skip to content

Commit

Permalink
Updated layout to include Angular 2 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nbellocam committed Mar 14, 2016
1 parent 1d2a6f1 commit d276963
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/MyAngular2BaseApp/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,26 @@
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
</environment>

<environment names="Development">
<script src="~/lib/npmlibs/es6-shim.js"></script>
<script src="~/lib/npmlibs/systemjs/system-polyfills.src.js"></script>
<script src="~/lib/npmlibs/angular2/angular2-polyfills.js"></script>

<script src="~/lib/npmlibs/systemjs/system.src.js"></script>
<script src="~/lib/npmlibs/rxjs/Rx.js"></script>
<script src="~/lib/npmlibs/angular2/angular2.js"></script>
</environment>

<environment names="Staging,Production">
<script src="~/lib/npmlibs/es6-shim.min.js"></script>
<script src="~/lib/npmlibs/systemjs/system-polyfills.js"></script>
<script src="~/lib/npmlibs/angular2/angular2-polyfills.min.js"></script>

<script src="~/lib/npmlibs/systemjs/system.src.js"></script>
<script src="~/lib/npmlibs/rxjs/Rx.min.js"></script>
<script src="~/lib/npmlibs/angular2/angular2.min.js"></script>
</environment>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
Expand Down

0 comments on commit d276963

Please sign in to comment.