From d144a03798f636180a60ea41674c7e9f5001f8a7 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 14 Jul 2018 08:56:39 +0200 Subject: [PATCH] guide/html-and-static-assets: Fix typos --- docs/guide/html-and-static-assets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/html-and-static-assets.md b/docs/guide/html-and-static-assets.md index 38979cb03d..d054f25aa0 100644 --- a/docs/guide/html-and-static-assets.md +++ b/docs/guide/html-and-static-assets.md @@ -108,9 +108,9 @@ Internally, we use `file-loader` to determine the final file location with versi ### The `public` Folder -Any static assets placed in the `public` folder will simply be copied and not go through webpack. You need to reference to them using absolute paths. +Any static assets placed in the `public` folder will simply be copied and not go through webpack. You need to reference them using absolute paths. -Note we recommended importing assets as part of your module dependency graph so that they will go through webpack with the following benefits: +Note we recommend importing assets as part of your module dependency graph so that they will go through webpack with the following benefits: - Scripts and stylesheets get minified and bundled together to avoid extra network requests. - Missing files cause compilation errors instead of 404 errors for your users.