티스토리 뷰
laravel 5.4에서는 기본적으로 webpack을 사용하도록 설정이 되어있는데
homestead 환경에서 laravel 5.4 프로젝트를 클린 설치 후에도 npm install 을 실행하면 여러가지 오류가 나고
오류를 겨우 메워서 설치를 완료한 뒤에도
npm run dev 를 실행해도 계속 여러가지 오류가 나타나서 꽤나 골치가 아팠는데
깔끔하게 정리되어있는 답변이 있어서 정리해둔다.
(참고로 내가 사용한 환경은 window7, virtualbox 환경에서 homestead를 사용했다)
핵심은
cross-env를 글로벌 설치할것
그리고 윈도우를 호스트로 하는 경우는 --no-bin-links 옵션을 반드시 넣을것
그리고 마지막으로 node-sass를 --no-bin-links 옵션으로 다시 빌드할것
sudo rm node_modules/ -rf
# this avoid problem with `cross-env not found`
sudo npm install cross-env -g
# Execute two times to resolve the problem with ` Maximum call stack size exceeded`
# while finalizing
# Also note: I'm using --no-bin-links because I've a Windows 7 host
npm install --no-bin-links || npm install --no-bin-links
# this avoid problem with `Module build failed: ModuleBuildError: Module build failed:
# Error: ENOENT: no such file or directory, scandir
#'/home/vagrant/Code/<your project name>/node_modules/node-sass/vendor' `
npm rebuild node-sass --no-bin-links
참고
https://www.bountysource.com/issues/42450808-cannot-find-module-cross-env
'WEB2.0' 카테고리의 다른 글
mac에서 /etc/hosts 를 조작하기 (0) | 2022.09.13 |
---|---|
nginx permission denied (0) | 2020.04.30 |
SSL 인증서 설치하기 (0) | 2015.07.27 |
android studio에서 카카오SDK 사용하기 (0) | 2015.02.16 |
안드로이드 스튜디오 패키지명 변경하기 (1) | 2015.02.12 |
- Total
- Today
- Yesterday
- 안드로이드
- JavaScript
- 대학생
- CSS
- 경진대회
- 네이버
- 자바스크립트
- 스마트폰
- 창업
- 웹표준
- 앱
- AWS
- 구글
- 앱스토어
- 소프트웨어
- 트위터
- 아이폰
- 게임
- Apple
- 어플리케이션
- 모바일
- android
- php
- 애플
- iPhone
- 공모전
- 아이디어
- 벤처
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |