I have two files which are combined under 600 bytes (.6kb) as below.
So how is it that my app.bundle.js is so large (987kb) and more importantly how does one manage
Nuxt solution nuxt.config.js:
nuxt.config.js
module.exports = { build: { extend(config, { isDev , isClient }) { if (isClient && !isDev) { config.optimization.splitChunks.maxSize = 250000 } } } }