ERROR
-
React-slick 에러 깜빡이는 현상 해결하기ERROR 2023. 12. 21. 11:50
react-slick 너무나도 간단하고 편리한 라이브러리이지만, 최근 처음보는 현상을 발견했다. react-slick을 사용한 베너에서 마지막 슬라이드에서 처음 슬라이드로 돌아갈때 깜빡이는 현상이 발견된 것! settings 에 useTransform false 를 준 후, const settings = { ... useTrasform: false, }; 아래와 같은 css 를 추가해서 개선해주었더니 해결완료! // react-slick error fix css .slick-slide, .slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3..
-
The Swift pod `FirebaseCoreInternal` depends upon `GoogleUtilities`, which does not define modules.ERROR 2023. 11. 11. 00:39
정말 하나하나 쉬운게 없는 리액트 네이티브 문제 상황 1. 난 스플래쉬 뷰를 만들기 위해 유튜브와 구글링으로 따라하던 중 2. npm i react-native-splash-screen 3. cd ios 4. pod install 5. [!] The following Swift pods cannot yet be integrated as static libraries: The Swift pod `FirebaseCoreInternal` depends upon `GoogleUtilities`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Sw..
-
CRA Failed to compile 에러 해결하기ERROR 2023. 10. 11. 00:26
아 에러 캡쳐 못했다..ㅎ Failed to compile. [eslint] EACCES: permission denied, mkdir '/Users/apple/Desktop/project/node_modules/.cache' ERROR in [eslint] EACCES: permission denied, mkdir '/Users/apple/Desktop/project/node_modules/.cache' 문제점 뭔가 어느 순간부터 내 맥북에선 sudo를 써야 설치가 되고, 계속 퍼미션 에러가 발생하면서 설치가 굉장히 까다로워졌다. 1. 간단하게 프로젝트 할 게 있어서 CRA를 사용하려고 CRA로 프로젝트 다운까지는 완료 2. npm run start 후 처음보는 에러 발생. 3. Failed to co..
-
Invalid App Store Icon. (부제 : 거의 다왔는데..)ERROR 2023. 9. 30. 22:14
역시 인생이 쉽게 풀릴리 없어.. 문제 상황 1. 진짜 영차영차 하면서, product archive 진행. 2. 눈누난나하면서 순조롭게 바로 uploading이 되는 줄 알았지만, 바로 에러 발생. 3. Invalid App Store Icon. The App Store Icon in the asset catalog in 'Runner.app' can't be transparent nor contain an alpha channel. 엥..근데 나 앱 아이콘 넣으라는대로 잘 넣었는데 뭐지...뭐가 문제지... 찾아보니, 앱 아이콘 배경이 투명하거나, 투명 영역을 포함하거나 알파 채널을 가지면 안된다는 것이다. 해결 방법 1. 기존에 앱 아이콘에 넣었던 기존 이미지 파일을 새로 복사한다. 2. 이미지를 ..
-
git pull origin main ssh: connect to host github.com port 22: 에러 해결하기ERROR 2023. 9. 24. 19:27
git 너 요즘 저한테 왜그러시죠..? git pull origin main ssh: connect to host github.com port 22: Operation timed out fatal: Could not read from remote repository. Please make sure you have the correct 문제 원인 1. 갑자기 여느때와 똑같이 main pull을 받으려는데 갑자기 엄청나게 오래걸리면서 안되는 현상 발생 2. 터미널에 "git pull origin main ssh: connect to host github.com port 22: Operation timed out fatal: Could not read from remote repository. Please m..
-
git main 엉킨 것 해결하기 (부제 : 침착해)ERROR 2023. 9. 22. 00:03
맞아요..저 바보예요... 문제점 1. 내가 git main을 최신화하지 않은 상태에서 main에서 작업중인지 모르고 작업 후에 push를 했다. 2. 프로젝트는 main이 최신화가 되지 않아도 Merge 가 되는 설정이었다. (아무 셋팅이 안되어있었음) 3. 뒤늦게 알아차리고 git reset hard를 했다. commit 내역을 초기화 하기 위해. 4. 새로운 브랜치를 파서 새롭게 commit을 남긴 후 push를 했다. 5. PR을 남길려고보니, file change에 아무것도 없고 commit 만 남겨져있었다. 6. 이상해서 새로운 테스트용 브랜치를 파서, pr을 올렸던 브랜치를 Pull 해봤다. 아무것도 변한게 없었다. 7. 잘못됐음을 인지. 해결책 1. git graph extension을 깐..