파이어베이스에서 Cloud Firestore에 데이터를 보내던 중 만난 오류
Cloud Firestore 의 규칙을 true로 수정해 줘도 해결이 되지 않아서봤더니
// 1. for Test mode
// Allow read/write access to all users under any conditions
// Warning: **NEVER** use this rule set in production; it allows
// anyone to overwrite your entire database.
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
2. for Auth required mode ✅
// Allow read/write access on all documents to any user signed in to the application
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if request.auth != null;
}
}
}
env파일에 오타가 있어서 수정해 주었더니 해결되었습니다..ㅎ
VITE_API_KEY = .........
VITE_AUTH_DOMAIN = .........
VITE_PROJECT_ID = ..........
VITE_STORAGE_BUCKET = ...........
VITE_MESSAGE_SENDER_ID = ..........
VITE_APP_ID = ..................
'⛔️ 오류' 카테고리의 다른 글
TypeScript Generic 오류 (0) | 2023.03.16 |
---|---|
Webpack 에서 CopyPlugin 설정 오류 (0) | 2023.03.16 |
Unknown at rule @tailwind 경고 (0) | 2023.03.16 |
webpack 에서 eslint 설치 시 생긴 오류 (0) | 2023.03.16 |
tailwind.css ⇒ ‘@’불러와 지지 않는 오류 (0) | 2023.03.16 |