0👍
For dotnet MyApp.Web.dll
and npm run serve
, both command will block the command window process, the following command will not run until you terminate the previous task.
For a workaround, you need to start the npm run serve
from Asp.Net Core.
For Asp.Net Core Angular template, there is built-in feature called AngularCliMiddlewareExtensions
.
For vue client, you could follow ASP.NET Core Vue CLI Templates to implement VueDevelopmentServerMiddleware
.
Here is the source code ASPCoreVueCLITemplates
- [Vuejs]-How insert multiple value in Intermediate table through API
- [Vuejs]-Babel error: Module build fails when I try to compile my front-end assets with Laravel Mix
Source:stackexchange.com