How to get webpack and iis express to work together?

后端 未结 4 1910
傲寒
傲寒 2021-02-20 07:12

I have Angular 2 and Webpack 2 starter which run on node by webpack-dev-server, and I what to run it from visual studio with web-api.

The problem is when angular2-webpa

4条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-20 07:27

    In my ASP .NET Core 2.2 Vue JS SPA, running with IIS Express (instead of "Project") said HMR Connected in web console but no changes actually getting received and updated...

    Not sure why but issue was to do with the hosting model so I just modified the .csproj as below and it worked fine thereafter:

      
        OutOfProcess
      
    
      
        InProcess
      
    

提交回复
热议问题