Is there possible to connect retool with firebase when firebase enables appcheck?

  1. import { initializeAppCheck, ReCaptchaEnterpriseProvider } from "firebase/app-check"; if (process.env.NODE_ENV !== 'production') { window.FIREBASE_APPCHECK_DEBUG_TOKEN = true; } export const appCheck = initializeAppCheck(app, { provider: new ReCaptchaEnterpriseProvider(process.env.REACT_APP_APP_CHECK_KEY), isTokenAutoRefreshEnabled: true });

This is my appCheck config in a react app. I need to import appCheck in my index.js to enable it.

I want to know how can I connect retool with firebase backend with appcheck. Please help.