1234567891011121314151617181920212223 |
- const safeThis = require('core-js-pure/features/global-this');
- const RefreshRuntime = require('react-refresh/runtime');
- if (process.env.NODE_ENV !== 'production') {
- if (typeof safeThis !== 'undefined') {
- var $RefreshInjected$ = '__reactRefreshInjected';
-
- if (typeof __react_refresh_library__ !== 'undefined' && __react_refresh_library__) {
- $RefreshInjected$ += '_' + __react_refresh_library__;
- }
-
- if (!safeThis[$RefreshInjected$]) {
-
- RefreshRuntime.injectIntoGlobalHook(safeThis);
-
- safeThis[$RefreshInjected$] = true;
- }
- }
- }
|