@ryleigh
To disable chunking in webpack, you can set the optimization.splitChunks option to false in your webpack configuration file. Here is an example configuration file with chunking disabled:
1 2 3 4 5 6 7 8 9 10 11 12 |
const path = require('path'); module.exports = { entry: './src/index.js', output: { filename: 'bundle.js', path: path.resolve(__dirname, 'dist'), }, optimization: { splitChunks: false, }, }; |
By setting splitChunks to false, webpack will bundle all of your code into a single file instead of creating separate chunks. Make sure to update your webpack configuration file accordingly and run webpack to build your project without chunking.