Skip to content

Instantly share code, notes, and snippets.

@scottaddie
Last active December 31, 2015 00:57
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Index action method in HomeController.cs
public IActionResult Index()
{
const string JAVASCRIPT_KEY = "js";
JObject json = WebpackHelper.GetWebpackAssetsJson(_applicationBasePath);
ViewBag.VendorScripts = json.SelectToken("vendor").Value<string>(JAVASCRIPT_KEY);
ViewBag.AppScripts = json.SelectToken("app").Value<string>(JAVASCRIPT_KEY);
return View();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment