We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2897f commit 65354d4Copy full SHA for 65354d4
src/renderers/shared/fiber/ReactFiberDevToolsHook.js
@@ -42,6 +42,14 @@ if (
42
return 42;
43
}
44
};
45
+ warning(
46
+ (testMinification.name || testMinification.toString())
47
+ .indexOf('testMinification') !== -1,
48
+ "It looks like you're using a minified copy of the development build " +
49
+ 'of React. When deploying React apps to production, make sure to use ' +
50
+ 'the production build which skips development warnings and is faster. ' +
51
+ 'See https://fb.me/react-minification for more details.',
52
+ );
53
rendererID = inject(Object.assign({}, internals, {testMinification}));
54
55
0 commit comments