Gurnzbot
Gurnzbot

Reputation: 4132

How to create create-react-app vendor bundle

Using create-react-app, how do you go about creating a separate vendor bundle?

Code splitting is done pretty easily using the react-code-splitting package, but I've not found anything concrete about creating vendor bundles in a create-react-app project.

Upvotes: 3

Views: 2957

Answers (1)

Rahil Ahmad
Rahil Ahmad

Reputation: 3316

It might land in [email protected] .Here is a link where you can find more info. At the moment you have to eject to use the code-splitting

Upvotes: 1

Related Questions