Using react refresh#

React refresh lets you see changes on the browser without refreshing the page

Example#

js
1
// bundless.config.js
2
const { ReactRefreshPlugin } = require('@bundless/plugin-react-refresh')
3
4
module.exports = {
5
plugins: [ReactRefreshPlugin()],
6
}
Previous
Babel
Using react refresh