diff --git a/docs/config/README.md b/docs/config/README.md index 1479c86236..3ff52ed8d5 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -22,6 +22,10 @@ The file should export an object containing options: ``` js // vue.config.js + +/** + * @type {import('@vue/cli-service').ProjectOptions} + */ module.exports = { // options... } diff --git a/docs/ru/config/README.md b/docs/ru/config/README.md index 2f31f0dd49..b61e28110b 100644 --- a/docs/ru/config/README.md +++ b/docs/ru/config/README.md @@ -22,6 +22,10 @@ sidebar: auto ```js // vue.config.js + +/** + * @type {import('@vue/cli-service').ProjectOptions} + */ module.exports = { // настройки... } diff --git a/docs/zh/config/README.md b/docs/zh/config/README.md index 8843a6bd96..1d7380fe0c 100644 --- a/docs/zh/config/README.md +++ b/docs/zh/config/README.md @@ -22,6 +22,10 @@ sidebar: auto ``` js // vue.config.js + +/** + * @type {import('@vue/cli-service').ProjectOptions} + */ module.exports = { // 选项... }