본문 바로가기
프론트엔드/리액트

You may need an additional loader to handle the result of these loaders

by 1005ptr 2022. 12. 10.
반응형

미친 에러다

json-typescript-mapper 라이브러리에서 발생한 에러인데 아래 같이 @JsonProperty를 써놓은곳이 터지기도 한다.

Module parse failed: Unexpected character '@' (10:4)

 

결론은 싱거운데

리액트 컴포넌트가 아닌 일반 함수에서 객체를 생성해서 발생한 문제였다.

new classA()를 리액트 컴포넌트 안에서 하니까 문제 없음

Builder 클래스를 만든다고 하다가 만난 에러인데 new도 못하는지는 몰랐다.

밖에서 new를 해서 전달해주니까 정상 동작

 

 

 

https://stackoverflow.com/questions/58681367/webpack-react-js-you-may-need-an-additional-loader-to-handle-the-result-of-thes

 

Webpack/React.js: You may need an additional loader to handle the result of these loaders

ERROR in ./productFlow/index.tsx 3:12 Module parse failed: Unexpected token (3:12) File was processed with these loaders: * ./node_modules/awesome-typescript-loader/dist/entry.js You may need ...

stackoverflow.com

https://g-study.tistory.com/48

 

css Loader 오류 You may need an appropriate loader to handle this file type

1. You may need an appropriate loader to handle this file type 오류 배경 : Webpack한다무엇을 : bundle.js 파일안에 CSS 파일을결과 : loader을 선언해주지 않았기에 다음과 같은 오류가 남 You may need an appropriate loader to

g-study.tistory.com

 

반응형

댓글