Last active
October 18, 2021 09:58
-
-
Save marcustw/5ce951a33123af48eb58ee81025a9bf6 to your computer and use it in GitHub Desktop.
init code for firebase functions
This file contains hidden or 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
const functions = require("firebase-functions"); | |
const admin = require('firebase-admin'); | |
const nodemailer = require('nodemailer'); | |
const cors = require('cors')({origin: true}); | |
admin. initializeApp(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment