Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created February 13, 2017 12:15
Embed
What would you like to do?
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