강의

멘토링

커뮤니티

Inflearn Community Q&A

director1156's profile image
director1156

asked

Easy to learn Webpack

[Practice] Getting started with Webpack

예제 6번부터 막혔어요 ;;

Written on

·

136

0

어떤것이 문제인지 잘모르겠어요 ..

npm i webpack - g

npm i webpack-cli -g

이후 그냥 그대로 예제를 실행하였습니다.


webpack app/index.js dist/bundle.js
ERROR in multi ./app/index.js dist/bundle.js
Module not found: Error: Can't resolve 'dist/bundle.js' in 'D:htmlLearnWebpackgetting-started'
@ multi ./app/index.js dist/bundle.js


webpack-cli --version 2.1.3
webpack --version 4.8.3

웹팩Bundling

Answer 1

0

epro님의 프로필 이미지
epro
Questioner

webpack app/index.js --output=dist/bundle.js 로 치니간 에러가 안나오네요..

노란 에러는

뒤에 태그로 --mode=development 나 production 을 붙이면되고요.

director1156's profile image
director1156

asked

Ask a question