Skip to content

Instantly share code, notes, and snippets.

@rowellx68
Created March 5, 2019 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rowellx68/5ff5ddae75d1529b2f34bfc2dca13588 to your computer and use it in GitHub Desktop.
Save rowellx68/5ff5ddae75d1529b2f34bfc2dca13588 to your computer and use it in GitHub Desktop.
@{
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