Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

Matt McLean
Matt McLean
2,733 Points

Running Webpack

When I run webpack it only outputs the version of webpack installed. It does not out put any other info. What am I doing incorrectly? Thanks Matt

1 Answer

At the very least, you'd need to provide webpack with an entry point/file and an output file:

webpack in 5 seconds - usage | webpack docs

Or set up a config file, then you can just use the webpack command (this is a little more advanced):

Moving to a configuration file - usage | webpack docs