docs(installation): fix incorrectly placed comma in array (#467)

This commit is contained in:
Exotical
2023-07-31 10:20:09 +02:00
committed by GitHub
parent 05ea5d2d78
commit c37a927b4e

View File

@@ -82,8 +82,8 @@ To enable these two features, you can add the following to your `.vscode/setting
```json [.vscode/settings.json]
{
"tailwindCSS.experimental.classRegex": [
["ui:\\s*{([^)]*)\\s*}", "[\"'`]([^\"'`]*).*?[\"'`]"]
["/\\*ui\\*/\\s*{([^;]*)}", ":\\s*[\"'`]([^\"'`]*).*?[\"'`]"],
["ui:\\s*{([^)]*)\\s*}", "[\"'`]([^\"'`]*).*?[\"'`]"],
["/\\*ui\\*/\\s*{([^;]*)}", ":\\s*[\"'`]([^\"'`]*).*?[\"'`]"]
]
}
```