Files
Cloud-Blog/content/blogs/2. fix-tailwindcss-intellisense-in-nuxt3.md
Al Asad Nur Riyad bdd40e0c97 Use small size img with webp format
Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
2023-05-14 00:34:13 +06:00

42 lines
1.7 KiB
Markdown

---
title: How To Fix TailwindCSS Intellisense In Nuxt3 Project
date: 26th Jan 2023
description: In Nuxt3 project tailwind css intellisense doesn't seems to work properly. In this blog I will share a workaround to fix this issue.
image: /blogs-img/blog2.webp
alt: Hwo to fix tailwind intellisense in nuxt3 project
ogImage: /blogs-img/blog2.webp
tags: ['nuxt', 'tailwindcss']
published: true
---
### Problems
I had a Nuxt3 and TailwindCSS project. which was opened in VsCode. But the problem was, in my project the tailwind intellisense didn't working properly. I tried to reinstall the vscode tailwind extension but the problem didn't solve properly. Later after doing some research I found a [workaround](https://github.com/tailwindlabs/tailwindcss-intellisense/issues/663#issuecomment-1316788128), That I am sharing here today.
### Why It's Not working
In our nuxt project we have a `.nuxt` directory. Nuxt uses the `.nuxt/` directory in development to generate your Vue application. And if we try to look properly there is also a file called `.nuxt/tailwind.config.cjs`, So tailwind find to config file in the same project, one is in your root directory and another one is in you `.nuxt` directory.
### Possible Workaround
One possible solution is, In your project we call tell the extension to exclude the `.nuxt` directory. To exclude the `.nuxt` directory in your workspace,
- Create a `/.vscode` folder in your project's root level.
- Inside `.vscode` folder add a `settings.json` file
- Copy the below code to `settings.json` file
```json
// /.vscode/settings.json
{
"tailwindCSS.files.exclude": [
"**/.git/**",
"**/node_modules/**",
"**/.hg/**",
"**/.svn/**",
"**/.nuxt/**"
]
}
```
Hopefully now tailwind intellisense start working properly.