react-refresh-webpack-plugin icon indicating copy to clipboard operation
react-refresh-webpack-plugin copied to clipboard

Expand webpack-dev-server dev dependency to include the newes semver 5.x

Open Towerss opened this issue 1 year ago • 1 comments

Hi guys,

There is a new version of webpack-dev-server with a semver 5.0.0

This change would make it possible to update webpack-dev-server to the latest version 5.0.0 without needing to force the update.

It would also allow users to test with the latest version of webpack-dev-server in development. I installed in 2 projects bundled with webpack 5 and React 18, and I have have not issues with hot reload.

Towerss avatar Feb 13 '24 05:02 Towerss

Put this in your package.json while your wait:

"overrides": {
	"@pmmmwh/react-refresh-webpack-plugin": {
		"webpack-dev-server": "^5.0.2"
	},
},

captainamerican avatar Mar 01 '24 02:03 captainamerican