-
Notifications
You must be signed in to change notification settings - Fork 219
tailwindcss-intellisense extension not working properly #1010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Extension is not working properly mainly two things .
|
Stopped working about a week ago. |
Yeah but i thought it will work after sometime but it's not 🙂 |
Closing in favor of #988 which is where we're tracking things. @ShaquibKhanhub @erquhart Can you both update to the v0.12.4 release please. If you're still having problems can you provide your VSCode settings and details about your project in that issue? (A full reproduction would be very, very useful) |
User settings
|
i have provide my user settings.json it's after very long time but after that issue i was not using tailwind for CSS |
What version of VS Code are you using?
Most latest ver.
What version of Tailwind CSS IntelliSense are you using?
v0.12.3
What version of Tailwind CSS are you using?
"^3.4.1"
What package manager are you using?
npm
What operating system are you using?
Windows
Tailwind config
import type { Config } from "tailwindcss"
const config = {
darkMode: ["class"],
content: [
'./pages//*.{ts,tsx}',
'./components//.{ts,tsx}',
'./app/**/.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config
export default config
VS Code settings
// Paste your VS Code settings in JSON format here
Im not getting which settings i should provide like extention settings or what ,and you can tell me how to do it on mail : shaquibkhanrdx34@gmail.com
Reproduction URL
A public GitHub repo that includes a minimal reproduction of the bug. Please do not link to your actual project, what we need instead is a minimal reproduction in a fresh project without any unnecessary code. This means it doesn't matter if your real project is private/confidential, since we want a link to a separate, isolated reproduction anyways.
Describe your issue
Describe the problem you're seeing, any important steps to reproduce and what behavior you expect instead.
The text was updated successfully, but these errors were encountered: