-
[ Error ] Typescript image import errorError 2023. 5. 1. 19:14
타입스크립트 이미지 import error
png 파일을 import 시도하는데 에러가 발생했다.
해결법
src 폴더에 custom.d.ts 파일을 생성한다.
declare module "*.jpg"; declare module "*.png"; declare module "*.jpeg"; declare module "*.gif";
필요한 확장자를 위와 같은 형식으로 입력해 준다.
추가로 ) d.ts 파일은 무엇인가 ?
custom.d.ts 파일을 생성하는데 d.ts는 어떤 파일인가 ?- type을 정의하기 위한 파일이다.
'Error' 카테고리의 다른 글
[ Error ] The Edge Function "middleware" is referencing unsupported modules: (0) 2023.09.01 [ Error ] Styled-Components install error (0) 2023.05.08