mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
Plugin.registerCompiler({
|
|
extensions: ['js', 'jsx', 'mjs'],
|
|
}, function () {
|
|
return new BabelCompiler({
|
|
react: true
|
|
}, (babelOptions, file) => {
|
|
if (file.hmrAvailable()) {
|
|
babelOptions.plugins = babelOptions.plugins || [];
|
|
babelOptions.plugins.push(...ReactFastRefresh.getBabelPluginConfig());
|
|
}
|
|
});
|
|
});
|