mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
4466ba436b
## Description This PR ensures that the default prettier config is used for examples and templates. This config is compatible with `prettier@3` as well (upgrading prettier is bigger change that can be a future PR). ## Changes - Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will be needed upgrading to prettier@3) - Added `examples/.prettierrc.json` with default config (this will change every example) - Added `packages/create-next-app/templates/.prettierrc.json` with default config (this will change every template) ## Related - Fixes #54402 - Closes #54409
27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
import { initializeApp, getApps } from "firebase/app";
|
|
import { getAnalytics } from "firebase/analytics";
|
|
export const createFirebaseApp = () => {
|
|
const clientCredentials = {
|
|
apiKey: process.env.NEXT_PUBLIC_FIREBASE_API_KEY,
|
|
authDomain: process.env.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN,
|
|
databaseURL: process.env.NEXT_PUBLIC_FIREBASE_DATABASE_URL,
|
|
projectId: process.env.NEXT_PUBLIC_FIREBASE_PROJECT_ID,
|
|
storageBucket: process.env.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET,
|
|
messagingSenderId: process.env.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID,
|
|
appId: process.env.NEXT_PUBLIC_FIREBASE_APP_ID,
|
|
measurementId: process.env.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID,
|
|
};
|
|
|
|
if (getApps().length <= 0) {
|
|
const app = initializeApp(clientCredentials);
|
|
// Check that `window` is in scope for the analytics module!
|
|
if (typeof window !== "undefined") {
|
|
// Enable analytics. https://firebase.google.com/docs/analytics/get-started
|
|
if ("measurementId" in clientCredentials) {
|
|
getAnalytics();
|
|
}
|
|
}
|
|
return app;
|
|
}
|
|
};
|