Hi !
I'm using the version 3.1.1.
I define the MapToVueCliProxy route pattern as follow
endpoints.MapToVueCliProxy( "booking", new SpaOptions { SourcePath = "../Kronos.BookingClient" }, npmScript: System.Diagnostics.Debugger.IsAttached ? "serve" : null, regex: "Compiled successfully", forceKill: true, https: true);
My website continue to serve the vuejs project on root (https://localhost:44389/ instead of https://localhost:44389/booking)
I also tried
endpoints.MapToVueCliProxy( "booking/{*path}", new SpaOptions { SourcePath = "../Kronos.BookingClient" }, npmScript: System.Diagnostics.Debugger.IsAttached ? "serve" : null, regex: "Compiled successfully", forceKill: true, https: true);
I suppose it is not a normal behavior. Am I wrong ?