본문 바로가기
ERROR

[Vue3] vue Uncaught (in promise) ReferenceError: React is not defined

by sssooon 2024. 11. 1.

script를 tsx 사용하며 문제가 생긴거같다.

 

 

plugin-vue-jsx를 설치해준다

npm @vitejs/plugin-vue-jsx

 

 

vite.config.ts 파일에 아래와 같이 추가 및 수정 해준다

import vueJsx from '@vitejs/plugin-vue-jsx'

export default defineConfig({
	plugins: [
    	vue(),
        vueJsx(),
    ]
})