| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
| 31 |
- Python
- gemini
- 바보
- Windows
- 분석
- 주식
- Linux
- unity
- 설정
- 구글
- API
- FLUTTER
- nodejs
- Kibana
- 유니티
- docker
- LLM
- ChatGPT
- AWS
- MSSQL
- elasticsearch
- app
- Ai
- MySQL
- JavaScript
- 재테크
- 투자
- JS
- error
- Today
- Total
목록2023/12/15 (2)
가끔 보자, 하늘.
안쓴놈 나와!! -_-++ production build 에서 저 옵션 빼먹고 배포해서 식겁했네. package.json에 아래와 같이 등록해야 함. . . "scripts": { "start": "react-scripts start", "build": "set \"GENERATE_SOURCEMAP=false\" && react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, . . GENERATE_SOURCEMAP이 false로 되어 있지 않다면 소스 코드 그대로 다 보임. false 설정을 해두면 아래와 같이 보임. 끝!!
react-dom.development.js:88 Warning: ForwardRef(InputBase) contains an input of type date with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. 이 에러는 혹은 등의 입력 관련 컴포넌트에 defaultValue 속성과 va..