require.ensure](https://github.com/facebookincubator/create-react-app/issues/1524) (https://github.com/facebookincubator/create-react-app/pull/1536)[ ] Document dynamic import
[ ] Tune performance hint thresholds
btw. you can disable require.ensure in webpack 2.
module: {
rules: [
{ parser: { requireEnsure: false } }
]
}
Neat, thanks @sokra!
We should probably watch https://github.com/webpack/webpack/issues/4292 (unrelated to this issue, but something to not forget about when cutting 0.10.0).
Going to push this back to 0.11.
We've added our own performance hints about post-compression size, closing this as unnecessary.
Most helpful comment
btw. you can disable
require.ensurein webpack 2.