몽땅뚝딱 개발자

[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"
}

 

 

 


개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.

 

Comments