반응형
Module not found: Error: Can't resolve 'os' in '/Users/Desktop/bearu/node_modules/dotenv/lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it.
.
.
.
npm run build 를 하다 에러메세지가 떴다.
원인
create-react-app 으로 생성된 react 앱은 기본적으로 dotenv가 내장되어 있어 따로 적어줄 필요없다.
해결 방법
import dotenv from "dotenv";
dotenv.config();
이렇게 작성한 부분이 있다면 모두 지워주면 된다.
반응형