728x90
Netlify로 배포 도중 다음과 같은 에러가 발생했다.
Treating warnings as errors because process.env.CI = true.
Most CI servers set it automatically.
공식 netlify docs에서 해결법을 확인할 수 있었다.
https://docs.netlify.com/configure-builds/troubleshooting-tips/#build-fails-on-warning-message
프로젝트마다 설치된 라이브러리들이 warning을 error로 감지할 수 있다고 한다.
해결 방법
굉장히 간단하다.
Site settings> Build & deploy> Edit settings
Build command의 npm run build를 CI= npm run build
(또는 CI="" npm run build
)로 바꿔주면 된다.
728x90
'💻 Study > 웹' 카테고리의 다른 글
[MySQL] java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver | MySQL JDBC Driver Not Found (0) | 2022.07.18 |
---|---|
[netlify] Page Not Found Error (React Router) (1) | 2022.01.03 |
[Node.js] GET과 POST의 차이는 무엇일까? (0) | 2021.12.08 |
[Javascript] '==' 와 '===' 뭐가 다를까? (0) | 2021.02.24 |
#2-2 USEEFFECT (0) | 2021.01.12 |