From 9ec37a99555e07963a83fe0e642de7a7f235076e Mon Sep 17 00:00:00 2001 From: Yaroslav Admin Date: Tue, 8 Sep 2020 18:07:55 +0200 Subject: [PATCH] docs: mention that `html` include type does not work anymore (#3556) Also added similar note for `dart` include type. Fixes #3419 --- docs/config/02-files.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/docs/config/02-files.md b/docs/config/02-files.md index 6f52025cd..4c7debcb0 100644 --- a/docs/config/02-files.md +++ b/docs/config/02-files.md @@ -27,17 +27,14 @@ Each pattern is either a simple string or an object with the following propertie ### `type` * **Type.** String * **Default.** Will attempt to determine type based on file extension. If that fails, defaults to `js`. -* **Description.** Choose the type to use when including a file. * **Possible Values:** - * `css` - * `html` - * `js` - * `dart` - * `module` - * `dom` -* **Description.** The type determines the mechanism for including the file. The `css` and `html` types -create `link` elements; the `js`, `dart`, and `module` elements create `script` elements. The `dom` type -includes the file content in the page, used, for example, to test components combining HTML and JS. + * `css` - Include using `` tag. + * `html` - Include using [HTML Imports](https://developer.mozilla.org/en-US/docs/Web/Web_Components/HTML_Imports). Note that this feature is obsolete and does not work in the modern browsers. + * `js` - Include using `` tag. + * `dart` - Include using `` tag. Note that this does not work in the modern browsers. + * `module` - Include using `` tag. + * `dom` - Inline content of the file in the page. This can be used, for example, to test components combining HTML and JS. +* **Description.** The type determines the mechanism for including the file. ### `watched` * **Type.** Boolean