Resaving source files (with hot reload enabled) causes loss of manifest file
See original GitHub issueRepro steps:
yarn run start
- Look inside build dir to verify manifest.json is present
- Load extension in chrome
- Change a JS source file
- Look inside build dir to verify manifest.json is NOT present
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:6
Top Results From Across the Web
Hot reload - Flutter documentation
Flutter's hot reload feature helps you quickly and easily experiment, build UIs, add features, and fix bugs. Hot reload works by injecting updated...
Read more >webpack-dev-server hot reload not working - Stack Overflow
It seems webpack-dev-server gets confused when it sees dist/bundle.js in the html file and doesn't hot replace it, even though webpack.config.js is configured ......
Read more >Write and debug code by using Hot Reload - Visual Studio ...
Open a project based on a supported application type. · Make sure that Enable native code debugging is disabled in the debugger settings...
Read more >Handle configuration changes - Android Developers
When such a change occurs, Android restarts the running Activity ( onDestroy() is called, followed by onCreate() ). The restart behavior is ...
Read more >Webpack's Hot Module Replacement Feature Explained
Developing a JavaScript application involves reloading the ... from the HMR server that contains the manifest file and chunks of code that ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
same issue, I added a config option and then solved : new CopyWebpackPlugin([ ‘src/manifest.json’, ], { copyUnmodified: true })
Another solution here. I’ve encounter the same issue