webpack-aspnetcore icon indicating copy to clipboard operation
webpack-aspnetcore copied to clipboard

:rocket: Make Webpack and ASP.NET Core friends easy way

Results 5 webpack-aspnetcore issues
Sort by recently updated
recently updated
newest added

Hi 🙌 I am currently considering using this library in an ASP.NET Core 3.1 project. Currently, netcore5.0 has already been released, but is it possible to upgrade the framework version...

I have my site running SSL in development with a self-signed cert. This causes the webpack-dev-server connection to fail unless that too runs with SSL -- by setting `https` to...

This is my dev server url `http://127.0.0.1:9000/manifest.json` and this is the manifest content ```json { "app.js": "http://localhost:9000/app.js", "app.css": "http://localhost:9000/app.css" } ``` my configuration: ```cs services.AddWebpack() .AddDevServerOptions(options => { options.Port =...

Hi Sergey, how hard would it be to add support for HMR? I assume it would require: 1. changing reverse proxy middleware to proxy also requests to `/sockjs-node**`. It is...

enhancement

Updating code sample to reflect how to Configure. (based on example code)