Torsten Rüter
Torsten Rüter
Would love to see this merged and bumping this ticket because I also have a need for this.
+1
I'm pretty sure there was a reason regarding `webpack-isomorphic-tools`. Either something related to writing the webpack-assets.json or the hot reloading.
You need to `require()` these files, and let webpack know how to deal with .css files in `dev.config.js`.
Check out code splitting as in the `huge-app` [example of react-router](https://github.com/rackt/react-router/tree/master/examples) and use a component scoped require to load jQuery. Or, even better, find a solution that works without jQuery...
Out of curiosity: What is the status of Typescript? Can it keep up with modern babel plugins like react transform? Does it support the latest features of ES6 and React?
Any chance we can bump this?
I'm trying to get this to work on heroku. The best way would be to update this repo, but I don't feel comfortable fixing the compile step myself. Can someone...
The bundle on the [heroku app](https://react-redux.herokuapp.com/) is just 131kb gzipped, including all vendor code - I consider that small enough. If you still want to split the app take a...
Just found this _A router is the perfect place to handle code splitting_: [react-router/DynamicRouting.md](https://github.com/rackt/react-router/blob/master/docs/guides/advanced/DynamicRouting.md) Does anyone know whether it makes sense to split vendor css like bootstrap and font-awesome into...