From a329b1fad53849b8ef2d235ced7bd9ebc32f4747 Mon Sep 17 00:00:00 2001 From: aruseni Date: Mon, 24 Jun 2019 00:19:05 +0300 Subject: [PATCH 1/2] Correct HTML and Static Assets --- 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 b54acbc8e9..c11d88d61f 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 the 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')`. From d2378ee298cd9197cd14e637933821d63c4e13ae Mon Sep 17 00:00:00 2001 From: aruseni Date: Mon, 24 Jun 2019 12:02:12 +0300 Subject: [PATCH 2/2] Update docs/guide/html-and-static-assets.md Co-Authored-By: Natalia Tepluhina --- 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 c11d88d61f..16a5bd47fc 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 of the 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')`.