This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Root Config</title> | |
<link rel="icon" href="/single-spa.svg"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Temporary wrapper for firebase functions until @sentry/serverless support is implemented | |
* It currently supports wrapping https, pubsub and firestore handlers. | |
* usage: https.onRequest(wrap((req, res) => {...})) | |
* Updated by JFGHT 29/12/2023 | |
* Taken from https://gist.github.com/zanona/0f3d42093eaa8ac5c33286cc7eca1166 | |
*/ | |
import type { Event } from '@sentry/types'; | |
import type { https } from 'firebase-functions'; | |
import type { onRequest, onCall } from 'firebase-functions/lib/providers/https'; |