Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

How to get tailwindcss intellisense to work with react files

//in your settings.json add the following below:
{
  // other settings
  "tailwindCSS.includeLanguages": {
    "javascript": "javascript",
    "html": "HTML"
  },
  "editor.quickSuggestions": {
    "strings": true
  }
}

// if it doesnot work after the above is added to settings.json
// delete the "tailwind.config.js" file and create it back by running the below on your terminal
npx tailwindcss init
Comment

How to get tailwindcss intellisense to work with react files

//in your settings.json add the following below:
{
  // other settings
  "tailwindCSS.includeLanguages": {
    "javascript": "javascript",
    "html": "HTML"
  },
  "editor.quickSuggestions": {
    "strings": true
  }
}

// if it doesnot work after the above is added to settings.json
// delete the "tailwind.config.js" file and create it back by running the below on your terminal
npx tailwindcss init
Comment

PREVIOUS NEXT
Code Example
Javascript :: how get value of json encode in laravel 
Javascript :: nodejs wait event loop to finish 
Javascript :: how to get value in formgroup in angular 
Javascript :: javascript get dictionary values 
Javascript :: tofixed currency in js 
Javascript :: es6 check if the object is empty 
Javascript :: get last element in array in js 
Javascript :: jquery has attribute 
Javascript :: vue dynamic component props 
Javascript :: react state hooks 
Javascript :: settimeout in a for loop javascript 
Javascript :: JS retrieve a String’s size 
Javascript :: get an html img tag from a string 
Javascript :: javascript e.key 
Javascript :: axios get status code 
Javascript :: localstorage 
Javascript :: minecraft lang file 
Javascript :: search text in div jquery 
Javascript :: confetti for javascript 
Javascript :: how to get datetime javascript now 
Javascript :: object to formdata 
Javascript :: how to edit website in browser using javascript on google chrome 
Javascript :: cypress custom error message 
Javascript :: Best Way to reset form elements 
Javascript :: queryselector 
Javascript :: call javascript function after page load complete 
Javascript :: wordpress load latest jQuery 
Javascript :: check all values from keys in object js 
Javascript :: ajax load document ready 
Javascript :: javascript name capitalization 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =