this is my tailwind.config.ts file
I tried looking at yt tutorials but nothing has worked so far i also have the tailwind.config.ts file in my next js app it still does'nt work maybe it has something to do with the settings!
this is my tailwind.config.ts file
I tried looking at yt tutorials but nothing has worked so far i also have the tailwind.config.ts file in my next js app it still does'nt work maybe it has something to do with the settings!
On
It seems that you use the default config file that Next provides upon creating a new project with Tailwind. Some things to verify:
editor.quickSuggestionsBy default VS Code will not trigger completions when editing "string" content, for example within JSX attribute values. Updating the editor.quickSuggestions setting may improve your experience:
"editor.quickSuggestions": {
"strings": "on"
}
node_modules directory at the root of your project, in conjuction with it being listed in package.json and package-lock.json.tailwind.config.ts.Make sure your VS Code settings aren’t causing your Tailwind config file to be hidden/ignored, for example via the
files.excludeorfiles.watcherExcludesettings.
Tailwind CSS: Show Output command (By default, you can open the command palette with Ctr+Shift+P) for more info regarding the initialization of Tailwind. It should Load the config file, postcss and Tailwind and then build it.
Did you install the extension: Tailwind CSS IntelliSense?