쫌 가이드좀 제대로 하지..
문의를 해도 응답이 영...관련 문구하나만 넣어놨어도 호스팅 구성하는 친구들이 알아서 할텐데...
git 통해 업로드시
<.gitignore> 파일은 꼭 넣어주어야 플랫폼 종속적인 모듈에서 에러발생으로 안됨..
파일명 그대로 git 형상관리 제외 목록을 관리하는 파일로
/node_modules
패턴을 꼭 넣어주어야 함...
------------------------------------------------------------------------------------
샘플 <.gitignore>
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.externalNativeBuild
/.idea
/app/release
/node_modules
------------------------------------------------------------------------------------안그럴시 에러 발생할 수 있음..
내경우 이미지처리 라이브러리인 sharp 이용시 에러발생...
Error: 'win32-x64' binaries cannot be used on the 'linux-x64' platform. Please remove the 'node_modules/sharp/vendor' directory and run 'npm install'.
에러내용보면 원인은 대충 짐작이 가겠죠