This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Description
Im trying to implement hmr but when im changing any of components its giving the warning below:
[HMR] The following modules couldn't be hot updated: (Full reload needed)
This is usually because the modules which have changed (and their parents) do not know how to hot reload themselves. See http://webpack.github.io/docs/hot-module-replacement-with-webpack.html for more details.
File is tracked by hmr,it says that bundle rebuilt and after cheking for updates on the server its giving this warning and thats it.Can you help me find out solution to fix that?
Startup.cs:
// Webpack middleware setup
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
{
HotModuleReplacement = true,
ProjectPath = env.ContentRootPath
});