Integration Net Core 2.2, Vue, Quasar. Launch in IIS.
-
Hi,
Project structure:— Integration Net Core 2.2 - Vue
MS Visual Studio- Create a project. Template Net Core - React
- Delete the folder - clientapp
- Vue Cli - create a vue project -clientapp
- Startup.cs:
- add: using VueCliMiddleware;
- change:
configuration.RootPath = “ClientApp/build” -> configuration.RootPath = “ClientApp/dist”; - change:
spa.UseReactDevelopmentServer(npmScript: “start”); -> spa.UseVueCli(npmScript: “start”);
Done. We start the project.
Question: how to integrate Net Core 2.2 and Quasar (CLI)?
Thanks!