Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Use the right name for styleToImports in documentation #88

Merged
merged 1 commit into from
May 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/2.3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ stylus: { /* stylus options */}
</p>

#### 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
Expand All @@ -119,7 +119,7 @@ import scss from 'rollup-plugin-scss'
export default {
...
plugins: [
vue({ autoStyles: false, styleToImport: true }),
vue({ autoStyles: false, styleToImports: true }),
scss()
],
...
Expand Down