From feec37b7849234f75105c6b1a44e2c47ec3819df Mon Sep 17 00:00:00 2001 From: Ramzi Samman Date: Thu, 19 May 2016 13:32:06 +0300 Subject: [PATCH] docs(webpack): fix a typo in the dev guide closes #1431 --- 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 e931c6b0d7..9231e66b21 100644 --- a/public/docs/ts/latest/guide/webpack.jade +++ b/public/docs/ts/latest/guide/webpack.jade @@ -303,7 +303,7 @@ a(id="development-configuration") The `HtmlWebpackPlugin` (added in `webpack.common.js`) use the *publicPath* and the *filename* settings to generate appropriate <script> and <link> tags into the `index.html`. - Our CSS are buried inside our Javascript bundles by deault. The `ExtractTextPlugin` extracts them into + Our CSS are buried inside our Javascript bundles by default. The `ExtractTextPlugin` extracts them into external `.css` files that the `HtmlWebpackPlugin` inscribes as <link> tags into the `index.html`. Refer to the Webpack documentation for details on these and other configuation options in this file