I have laravel-vue stack for my project. While building with mix it splits codes into two main files
vendor.js
app.js
Apart from that there are around 60 files which gets created as chunks like
0.js
1.js
2.js
...
61.js
How to tell webpack to bind these chunks into single file. Does the webpack breaks into chunks for each new component in cue?