Skip to content

Instantly share code, notes, and snippets.

@dileno
Created September 13, 2019 20:45
Show Gist options
  • Save dileno/9d95e951a0414f108443d1a0212061f1 to your computer and use it in GitHub Desktop.
Save dileno/9d95e951a0414f108443d1a0212061f1 to your computer and use it in GitHub Desktop.
Startup.cs UseSpaStaticFiles and UseSpa
app.UseSpaStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action=Index}/{id?}");
});
app.UseSpa(spa =>
{
// To learn more about options for serving an Angular SPA from ASP.NET Core,
// see https://go.microsoft.com/fwlink/?linkid=864501
spa.Options.SourcePath = "ClientApp";
if (env.IsDevelopment())
{
spa.UseAngularCliServer(npmScript: "start");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment