본문 바로가기
개발 부산물

React error " Module not found: Can't resolve './node_modules/react' "

by 개탱 2020. 5. 16.
728x90

Module not found: Can't resolve './node_modules/react'

와 비슷한 에러가 발생 시에

 

해당 .js파일의 import 부분에서

 

import React, {Component} from './node_modules/react';

라고 되어 있는 것을

 

import React, {Component} from 'react';

로 바꿔서 사용해보자.

댓글