Autosuggest Tailwind CSS class IntelliSense

Published at

#vscode

This TIL is more than a year old. Some details may have changed.

By default, the Tailwind CSS IntelliSense extension didn't give automatic IntelliSense when typing. Adding the following to settings.json fixed this.

JSON
"editor.quickSuggestions": {
   "strings": true
},
"css.validate": false,
"editor.inlineSuggest.enabled": true