From aa65f0cf44f19eabfbaf36725321ce15928fbe99 Mon Sep 17 00:00:00 2001 From: escardin Date: Fri, 13 May 2016 10:41:50 -0400 Subject: [PATCH] docs(webpack) missing word --- public/docs/ts/latest/guide/webpack.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/webpack.jade b/public/docs/ts/latest/guide/webpack.jade index f39175d7c0..5c9bedafb5 100644 --- a/public/docs/ts/latest/guide/webpack.jade +++ b/public/docs/ts/latest/guide/webpack.jade @@ -256,7 +256,7 @@ a(id="commons-chunk-plugin") We want the `app.js` bundle to contain only app code and the `vendor.js` bundle to contain only the vendor code. - Our application code `imports` vendor code. Webpack is not smart to keep the vendor code out of the `app.js` bundle. + Our application code `imports` vendor code. Webpack is not smart enough to keep the vendor code out of the `app.js` bundle. We rely on the `CommonsChunkPlugin` to do that job. .l-sub-section :marked