Created
March 5, 2019 18:34
-
-
Save rowellx68/5ff5ddae75d1529b2f34bfc2dca13588 to your computer and use it in GitHub Desktop.
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
@{ | |
ViewData["Title"] = "Home Page"; | |
} | |
<div aurelia-app="main">Loading...</div> | |
@section scripts { | |
<environment names="Development"> | |
<script type="text/javascript" asp-src-include="~/dist/vendor.*.js" asp-append-version="true"></script> | |
<script type="text/javascript" src="~/dist/app.bundle.js" asp-append-version="true"></script> | |
</environment> | |
<environment names="Production"> | |
<script type="text/javascript" asp-src-include="~/dist/common.*.bundle.js" asp-append-version="true"></script> | |
</environment> | |
<environment names="Staging, Production"> | |
<script type="text/javascript" asp-src-include="~/dist/vendor.*.bundle.js" asp-append-version="true"></script> | |
<script type="text/javascript" asp-src-include="~/dist/app.*.bundle.js" asp-append-version="true"></script> | |
</environment> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment