From 89ed7c6466d2c11844e199292b3a9d7aa1c174c2 Mon Sep 17 00:00:00 2001 From: Roberto Frenna Date: Mon, 8 May 2017 17:25:23 +0200 Subject: [PATCH] docs: v2.3: use the right name for `styleToImports` --- docs/en/2.3/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/2.3/README.md b/docs/en/2.3/README.md index bf35c54..75fbb8e 100644 --- a/docs/en/2.3/README.md +++ b/docs/en/2.3/README.md @@ -109,7 +109,7 @@ stylus: { /* stylus options */}

#### Use other plugins -Set `autoStyles: false` and `styleToImport: true` to import style as a dependency and plugins like [rollup-plugin-scss](https://github.com/differui/rollup-plugin-sass) can be used. +Set `autoStyles: false` and `styleToImports: true` to import style as a dependency and plugins like [rollup-plugin-scss](https://github.com/differui/rollup-plugin-sass) can be used. ``` js // rollup.config.js @@ -119,7 +119,7 @@ import scss from 'rollup-plugin-scss' export default { ... plugins: [ - vue({ autoStyles: false, styleToImport: true }), + vue({ autoStyles: false, styleToImports: true }), scss() ], ...