여씨의 개발이야기
[Today's Bug] Import in body of module; reorder to top import/first 본문
🐞 Debug
[Today's Bug] Import in body of module; reorder to top import/first
yeossi 2022. 1. 13. 15:08📢 이 버그 좀 보세요!
🐞 버그가 나타난 이유?
위 버그는 모듈을 모두 import하기 전에 변수나 상수를 선언할 경우 발생하는 버그였다. 아래는 버그가 발생한 코드이다.
import firebase from '../firebase';
import { getFirestore, collection, addDoc, serverTimestamp } from "firebase/firestore";
const database = getFirestore(firebase); //정보가 올바르면 아래 파이어스토어 접근
import Auth from "./auth";
function MainPage() {
🕸 어떻게 이 버그를 잡을까?
import문 다음에 변수/상수를 선언해주자.
import firebase from '../firebase';
import { getFirestore, collection, addDoc, serverTimestamp } from "firebase/firestore";
import Auth from "./auth";
const database = getFirestore(firebase); //정보가 올바르면 아래 파이어스토어 접근
function MainPage() {
'🐞 Debug' 카테고리의 다른 글
Comments