19 lines
609 B
JavaScript
19 lines
609 B
JavaScript
import { initializeApp } from "https://www.gstatic.com/firebasejs/12.1.0/firebase-app.js";
|
|
import { getDatabase } from "https://www.gstatic.com/firebasejs/12.1.0/firebase-database.js";
|
|
|
|
const firebaseConfig = {
|
|
apiKey: "AQUI_TUA_API_KEY",
|
|
authDomain: "AQUI.firebaseapp.com",
|
|
databaseURL: "https://condomaster-pro-ed9af-default-rtdb.europe-west1.firebasedatabase.app",
|
|
projectId: "condomaster-pro-ed9af",
|
|
storageBucket: "condomaster-pro-ed9af.appspot.com",
|
|
messagingSenderId: "AQUI",
|
|
appId: "AQUI"
|
|
};
|
|
|
|
const app = initializeApp(firebaseConfig);
|
|
const db = getDatabase(app);
|
|
|
|
export { app, db };
|
|
|