Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created February 13, 2017 12:15
  • 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
Save justinyoo/97722a8f7c559e3937703e471b54d9ee to your computer and use it in GitHub Desktop.
Running Vue.js on ASP.NET Core Web Application
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory oggerFactory)
{
...
// Setup default files middleware
// This must come before UseStaticFiles
app.UseDefaultFiles();
app.UseStaticFiles();
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment