From 40ae16ac09a2a31a80cca74581f3190f4548a839 Mon Sep 17 00:00:00 2001 From: Michael Hienle <40914576+mhienle@users.noreply.github.com> Date: Mon, 12 Aug 2019 09:03:11 +0200 Subject: [PATCH] Mention Rollup (#2187) --- content/docs/code-splitting.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/code-splitting.md b/content/docs/code-splitting.md index b5bfe9b7..d2e5b17f 100644 --- a/content/docs/code-splitting.md +++ b/content/docs/code-splitting.md @@ -7,7 +7,8 @@ permalink: docs/code-splitting.html ## Bundling {#bundling} Most React apps will have their files "bundled" using tools like -[Webpack](https://webpack.js.org/) or [Browserify](http://browserify.org/). +[Webpack](https://webpack.js.org/), [Rollup](https://rollupjs.org/) or +[Browserify](http://browserify.org/). Bundling is the process of following imported files and merging them into a single file: a "bundle". This bundle can then be included on a webpage to load an entire app at once.