-
-
Save justinyoo/97722a8f7c559e3937703e471b54d9ee to your computer and use it in GitHub Desktop.
Running Vue.js on ASP.NET Core Web Application
This file contains 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
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