From 3e8fef815dd841f1dcfdc656eec413b2f0bdf070 Mon Sep 17 00:00:00 2001 From: aruseni Date: Mon, 24 Jun 2019 12:09:40 +0300 Subject: [PATCH] Correct HTML and Static Assets (#4192) * Correct HTML and Static Assets * Update docs/guide/html-and-static-assets.md Co-Authored-By: Natalia Tepluhina (cherry picked from commit 80e5d7ff36231fc31d2ed89fcf8f90483dbb3bec) --- docs/guide/html-and-static-assets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/html-and-static-assets.md b/docs/guide/html-and-static-assets.md index b54acbc8e..16a5bd47f 100644 --- a/docs/guide/html-and-static-assets.md +++ b/docs/guide/html-and-static-assets.md @@ -27,7 +27,7 @@ See also: [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content) is a type of resource hint that is used to specify resources that your pages will need very soon after loading, which you therefore want to start preloading early in the lifecycle of a page load, before the browser's main rendering machinery kicks in. -By default, a Vue CLI app will automatically generate preload hints for all files that are needed for the initial rendering the your app. +By default, a Vue CLI app will automatically generate preload hints for all files that are needed for the initial rendering of your app. The hints are injected using [@vue/preload-webpack-plugin](https://github.com/vuejs/preload-webpack-plugin) and can be modified / deleted via `chainWebpack` as `config.plugin('preload')`.