mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
const enabled = !process.env.DISABLE_REACT_FAST_REFRESH;
|
|
const babelPlugin = enabled ?
|
|
require('react-refresh/babel') :
|
|
null;
|
|
|
|
ReactFastRefresh = {
|
|
babelPlugin,
|
|
};
|