pro-mern-stack icon indicating copy to clipboard operation
pro-mern-stack copied to clipboard

missing command in webpack instructions

Open ChrisCurl opened this issue 7 years ago • 2 comments

The following command in the Using Webpack Manually section is missing the '-o' argument.

$ node_modules/.bin/webpack static/App.js static/app.bundle.js should be $ node_modules/.bin/webpack static/App.js -o static/app.bundle.js

ChrisCurl avatar May 02 '18 16:05 ChrisCurl

Was scratching my head for a while with that one -- thanks, @ChrisCurl !

RobertMyles avatar Jun 05 '18 19:06 RobertMyles

that solution didn't help me, but --output fixed it.

$ node_modules/.bin/webpack static/App.js --output static/app.bundle.js

fbarthel avatar Aug 22 '18 16:08 fbarthel