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

A Webpack plugin to enable "Fast Refresh" (also previously known as Hot Reloading) for React components.

Results 96 react-refresh-webpack-plugin issues
Sort by recently updated
recently updated
newest added

Been resolving some Dependabot alerts in another repo, and ran into an issue with `react-refresh-webpack-plugin` needing to be updated to the newer version of `loader-utils`. This just updates the loader-utils...

### Drop support for Webpack 4 / WDS 3 (#850) Fixes #647 Fixes #707 Fixes #728 Fixes #742 Fixes #788 Fixes #834 ### Thin wrapper for externalization of React (#852)...

I modify a module like: ```diff import { foo + bar } from "./components/index"; console.log(foo); + console.log(bar); const App = () => { return ; }; export default App; ```...

I am using the module version 0.5.13. In case if app found an error (eg. accessing undefined.a ), it looses it state and performs full reload. Is this behaviour is...

Hello everyone, I'll try to make a reproduction available when I have a bit of time if necessary, but first I wanted to make sure this was not a normal...

On my current setup, the entire HMR + refresh works fine on an entry such as: ``` myentry: { import: './src/entries/myentry.tsx', }, ``` But if I configured it to use...

Hi, First of all, thanks for creating this project! I know that this issue was discussed in several places, but the solutions offered there did not solve mine. I'm talking...

Instead of `require("loader-utils").getOptions(LoaderContext)` we should be good with `LoaderContext.getOptions()`, where `LoaderContext` is bound to `this`. This lets us drop the `loader-utils` dep, which until 3.2.1 contains a ReDoS vulnerability (CVE-2022-37603)....

When I try to change tsx files it works, but when I change my scss files refresh doesnt applies. In console we can see this ![image](https://github.com/user-attachments/assets/a115efa3-f409-4635-bcce-f99a4c395706) My webpack config file...

When i used MF component in my host app for local development.The refresh is doesn’t work in MF component,but host app's refresh can work.