Ahmed El Otmani
Results
3
comments of
Ahmed El Otmani
one solution that seemed to work is calling initializeApp with the config passed to it from a different file, like an entry file that loads right after the app loads,...
> Here's a one-liner that works for me: > > ```ts > import { getApps, initializeApp, } from 'firebase-admin/app' > export const app = getApps()[0] || initializeApp({}) > ``` Where...