隐藏 Download the React DevTools for a better
启动react项目的时候,一直给我推荐他家的开发工具: ‘Download the React DevTools for a better development experience: https://reactjs.org/link/react-devtools’
以下代码可以隐藏这恶心的广告。
将以下代码放到html的最顶部即可
console.info = new Proxy(console.info, {
apply: (target, thisArg, args) => {
if (args?.[0]?.includes?.("React DevTools")) return;
return Reflect.apply(target, thisArg, args);
},
});