You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
856 B
24 lines
856 B
2 years ago
|
/* global __react_refresh_library__ */
|
||
|
|
||
|
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';
|
||
|
// Namespace the injected flag (if necessary) for monorepo compatibility
|
||
|
if (typeof __react_refresh_library__ !== 'undefined' && __react_refresh_library__) {
|
||
|
$RefreshInjected$ += '_' + __react_refresh_library__;
|
||
|
}
|
||
|
|
||
|
// Only inject the runtime if it hasn't been injected
|
||
|
if (!safeThis[$RefreshInjected$]) {
|
||
|
// Inject refresh runtime into global scope
|
||
|
RefreshRuntime.injectIntoGlobalHook(safeThis);
|
||
|
|
||
|
// Mark the runtime as injected to prevent double-injection
|
||
|
safeThis[$RefreshInjected$] = true;
|
||
|
}
|
||
|
}
|
||
|
}
|