Title.
My First Load JS shared by all is rather heavy, due to the chunks/pages/_app/
section, and I want to reduce it. Commenting the layout out will only reduce it by ~1kb, and node_modules
is a minor issue within my Webpack Bundle Analyzer, and instead pages
is large. In addition, while my index.jsx looks to be heavy as well, I am not doing much on that page, and I believe it is due to something with the +15 modules, but am unsure what that means.
How do I go about reducing the size of chunks/pages/_app/
, and my pages? I am using dynamic imports in all of them, and most are SSR.