Firebase App Check

Adding App Check

With just a few lines of code you can include app check into your website

import { initializeAppCheck, ReCaptchaV3Provider } from 'firebase/app-check';

if (import.meta.env.DEV) {
	// @ts-ignore
	self.FIREBASE_APPCHECK_DEBUG_TOKEN = true;
}

initializeAppCheck(app, {
	provider: new ReCaptchaV3Provider('6LdAIqQlAAAAAC4kq-bag4J-HmAAVe_pu7T75QOf'),
	isTokenAutoRefreshEnabled: true
});

Full Repo

You can clone the full repo from GitHub.

<section class=" aspect-video"> <iframe title="stackblitz for firebase app check" src="https://stackblitz.com/github/CodingCatDev/firebase-app-check?embed=1&file=src/App.svelte" frameborder="0" height="100%" width="100%" loading="lazy" /> </section>