Hi,
I know this sounds odd, but is there a nice way to disable the Code Splitting and just have one huge main.js? Asking for a friend...
Thanks,
Christian
In app/routes.js, if you import the containers in the top scope, import <container> from 'path', and then use component instead of getComponent in the routes config, it should effectively disable code splitting.
Thanks @GGAlanSmithee that did the trick :)
Closing
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
In
app/routes.js, if you import the containers in the top scope,import <container> from 'path', and then usecomponentinstead ofgetComponentin the routes config, it should effectively disable code splitting.