From 87685fd27fe7ae15ec9951a7cc1485321c4979dc Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 2 Oct 2019 01:01:21 +0300 Subject: [PATCH] Improve Code Splitting --- content/docs/code-splitting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/code-splitting.md b/content/docs/code-splitting.md index d7ace8a2..9d1101cd 100644 --- a/content/docs/code-splitting.md +++ b/content/docs/code-splitting.md @@ -62,8 +62,8 @@ it so large that your app takes a long time to load. To avoid winding up with a large bundle, it's good to get ahead of the problem and start "splitting" your bundle. - [Code-Splitting](https://webpack.js.org/guides/code-splitting/) is a feature -supported by bundlers like Webpack, [Rollup](https://rollupjs.org/guide/en/#code-splitting) and Browserify (via +Code-Splitting is a feature +supported by bundlers like [Webpack](https://webpack.js.org/guides/code-splitting/), [Rollup](https://rollupjs.org/guide/en/#code-splitting) and Browserify (via [factor-bundle](https://github.com/browserify/factor-bundle)) which can create multiple bundles that can be dynamically loaded at runtime.