- Today
- Total
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Firebase
- nestjs
- apollo
- Flutter
- API
- nextjs
- chart
- 3주차
- 코인
- rtk
- websocket
- 코인차트
- 차트
- javascript
- Redux
- 비전공자
- 차트만들기
- typeorm
- error
- Coin
- 주식
- 리액트
- 차트구현
- graphql
- react
- typescript
- 항해99
- 에러
- 주식차트
- 채팅
Archives
목록오류 (2)
Act99 기술블로그

React 에서 Firebase Auth 를 사용하기 위해 다음과 같은 코드를 짰다가 에러가 발생했다. - firebase.js import firebase from "firebase/app"; import "firebase/auth"; const firebaseConfig = { apiKey: process.env.REACT_APP_apiKey, authDomain: process.env.REACT_APP_authDomain, projectId: process.env.REACT_APP_projectId, storageBucket: process.env.REACT_APP_storageBucket, messagingSenderId: process.env.REACT_APP_messagingSenderId, ..
개발팁저장소/react
2022. 2. 2. 17:42
만약 npx create-react-app 이 실행되지 않을 경우/ please remove any global installs with one of the following commands
먼저 노드 버전을 14버전 이상인지 확인한다. 다음 16버전 이상이면 이런 에러가 발생할 수 있다. please remove any global installs with one of the following commands 이는 create-react-app 을 4.0.3 을 사용할 때 발생한다. 먼저, npx clear-npx-cache 를 통해 5.0.0 이상을 맞춰주기 위한 작업을 한다. 그럼 잘 된다.
개발팁저장소/react
2022. 1. 26. 15:59