Next.js Discord

Discord Forum

about webpack

Unanswered
kokoan23 posted this in #help-forum
Open in Discord
which file is responsible for setting up webpack on my project ? Or should I somehow connect it separately, if so how (briefly). Thanks

4 Replies

Western paper wasp
Webpack is already “set up” in your project—today, all next.js projects are built with webpack by default, and there’s a default webpack config that’s “implied” and automatically filled in during dev / build
You can change webpack’s settings from the defaults using next.config.js
It’s very easy to google “next.js webpack” for yourself