隱藏 Download the React DevTools for a better

丁少华發表於2024-09-22

啟動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);
      },
    });

相關文章