Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 성능최적화
- 타입좁히기
- React Native
- 리액트
- 폰트적용하기
- javascript
- 누구나 자료구조와 알고리즘
- JS console
- React.js
- react
- 레이아웃쪼개기
- 개발콘텐츠
- 제네릭
- typescript
- 커스텀
- const 단언문
- 타입스크립트
- 2022
- reactjs
- 티스토리꾸미기
- utilty type
- TSDoc
- click and drag
- Chart.js
- 공통컴포넌트
- returnType
- CSS
- vue.js
- NonNullable
- 반복줄이기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js] WARNING in configurationThe 'mode' option has not been set, webpack will fallback to 'production' for this value. 본문
에러일지/Vue.js
[Vue.js] WARNING in configurationThe 'mode' option has not been set, webpack will fallback to 'production' for this value.
레오나르도 다빈츠 2021. 7. 15. 13:37
에러
WARNING in configuration
The 'mode' option has not been set, webpack will fallback to 'production' for this value.
Set 'mode' option to 'development' or 'production' to enable defaults for each environment.
You can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/
WARNING in configuration
The 'mode' option has not been set, webpack will fallback to 'production' for this value.
Set 'mode' option to 'development' or 'production' to enable defaults for each environment.
You can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/
원인 및 해결
웹팩 버전의 차이로 생기는 경고문이다.
mode는 none, development, production 3개가 존재한다.
[파일: package.json]
"scripts": {
// --mode=none을 추가해준다.
"build": "webpack --mode=none"
}
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'에러일지 > Vue.js' 카테고리의 다른 글
[Vue.js/에러일지] SassError: Undefined variable (0) | 2021.12.31 |
---|---|
[Vue.js/미해결] 배포 후 흰 화면으로 뜨는 현상 / Uncaught SyntaxError: Unexpected token '<' (0) | 2021.10.14 |
[Vue.js] npm run build 명령어 실행 후 'Parsing error: Unexpected token <'가 뜨는 에러 (0) | 2021.09.10 |
[Vue.js] $refs를 사용할 때 undefined 에러 (0) | 2021.06.24 |
[Vue.js] 'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. 에러해결 (0) | 2021.06.22 |
Comments