https://i.sstatic.net/jdc0C.png
This is the complete code I have written:
import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";
const firebaseConfig = {
apiKey: "APIKEY",
authDomain: "AUTHDOMAIN",
projectId: "PROJID",
storageBucket: "BUCKET",
messagingSenderId: "SOMEID",
appId: "APPID",
measurementId: "IDDDDD"
};
const app = initializeApp(firebaseConfig);
export const auth = getAuth(app);
I'm facing some issues with my code and struggling to identify the problem. Despite checking for errors, everything seems correct. Can someone please guide me on how to resolve this? D: