프론트엔드✏️/개인공부

[error] React/jsx-runtime 모듈 또는 해당 형식 선언 을 찾을 수 없습니다.

당근먹는하니 2022. 9. 22. 16:02
728x90
반응형
// NPM
npm install react@latest react-dom@latest

// TypeScript
npm install --save-dev @types/react@latest @types/react-dom@latest



// YARN
yarn add react@latest react-dom@latest

// TypeScript
yarn add @types/react@latest @types/react-dom@latest --dev

 

 

 

 

https://stackoverflow.com/questions/65913201/uncaught-error-cannot-find-module-react-jsx-runtime

 

Uncaught Error: Cannot find module 'react/jsx-runtime'

I am exploring making a component library using React and rollup, but finding that the app that is consuming the library is bundling it in the wrong order. This is causing the below error: bundle.j...

stackoverflow.com

 

728x90
반응형