Skip to content

Commit

Permalink
docs: css.modules.localsConvention is null by default, fix #5650 (#5864)
Browse files Browse the repository at this point in the history
  • Loading branch information
ydcjeff committed Nov 27, 2021
1 parent 7bf9f65 commit 8a8b296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/config/index.md
Expand Up @@ -236,9 +236,9 @@ export default defineConfig(async ({ command, mode }) => {
| ((name: string, filename: string, css: string) => string)
hashPrefix?: string
/**
* default: 'camelCaseOnly'
* default: null
*/
localsConvention?: 'camelCase' | 'camelCaseOnly' | 'dashes' | 'dashesOnly'
localsConvention?: 'camelCase' | 'camelCaseOnly' | 'dashes' | 'dashesOnly' | null
}
```

Expand Down

0 comments on commit 8a8b296

Please sign in to comment.