에러 (4) 썸네일형 리스트형 [React/Typescript] TS2307: Cannot find module 'swiper' or its corresponding type declarations. 기존 프로젝트에 슬라이더를 만드려고 시도. swiper 써야되는데 자꾸 에러가 났다 Error : TS2307: Cannot find module 'swiper' or its corresponding type declarations. 해결 방법 1. npm i @types/swiper 설치 2. tsconfig.json 파일에 types를 추가한다. { "compilerOptions": { "types": ["react-transition-group"], // 이거 추가하니 에러가 사라짐 ... } } [Git] ! [rejected] master -> master (non-fast-forward)error: failed to push some refs 해결 방법 만약 터미널에 명령어 git push origin master을 쳤는데 아래와 같은 오류가 나온다면? To https://github.com/inthhh/travel_web_react.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/inthhh/travel_web_react.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull .. [React] TypeError: Cannot read properties of undefined (reading 'prototype') 리액트 프로젝트 도중 이상한 에러가 떴다. 찾아보니 vs code 자동완성으로 아래 코드가 들어가있었는데, 이 코드가 문제였음 import { response } from "express"; 이 친구를 지워주니 에러가 싹 사라졌다. 편-안 [React] Attempted import error: does not contain a default export Attempted import error: does not contain a default export 리액트 프로젝트 강의를 따라가던 중 마주친 에러이다. 뭐가 문제인가 싶어서 번역기 돌려봄 가져오기 시도 오류 : './Sections/MainImage.js'에 기본 내보내기('MainImage'로 가져오기)가 없습니다. 이런 내용이었다. 즉, import 해놓은 MainImage 파일에 내보내기 코드가 없다는 말임. export default 코드를 깜빡했음ㅋㅋ export default MainImage; MainImage 파일에 위 코드를 추가해주니 정상적으로 작동되었다. 아직 리액트가 익숙하지 않아서 자꾸 이런거 빼먹는 실수를 한다. 정신차려.. 이전 1 다음