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.
13 lines
500 B
13 lines
500 B
const safeThis = require('./utils/safeThis');
|
|
|
|
if (process.env.NODE_ENV !== 'production' && typeof safeThis !== 'undefined') {
|
|
// Only inject the runtime if it hasn't been injected
|
|
if (!safeThis.__reactRefreshInjected) {
|
|
const RefreshRuntime = require('react-refresh/runtime');
|
|
// Inject refresh runtime into global scope
|
|
RefreshRuntime.injectIntoGlobalHook(safeThis);
|
|
|
|
// Mark the runtime as injected to prevent double-injection
|
|
safeThis.__reactRefreshInjected = true;
|
|
}
|
|
}
|