Open stesvis opened 1 month ago
@stesvis had the same, but fixed it by creating the tailwind.config.js
file with base content:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
};
As mentioned here: https://github.com/jaredh159/tailwind-react-native-classnames/discussions/124#discussioncomment-8841211
@stesvis had the same, but fixed it by creating the
tailwind.config.js
file with base content:/** @type {import('tailwindcss').Config} */ module.exports = { content: [], theme: { extend: {}, }, plugins: [], };
As mentioned here: #124 (reply in thread)
Yep I do have that, but still no intellisense:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: colors.primary,
primaryBorder: colors.primaryBorder,
secondary: colors.secondary,
secondaryBorder: colors.secondaryBorder,
tertiary: colors.tertiary,
tertiaryBorder: colors.tertiaryBorder,
quaternary: colors.quaternary,
quaternaryBorder: colors.quaternaryBorder,
success: colors.success,
successBorder: colors.successBorder,
warning: colors.warning,
warningBorder: colors.warningBorder,
error: colors.error,
errorBorder: colors.errorBorder,
link: colors.link,
linkBorder: colors.linkBorder,
info: colors.info,
infoBorder: colors.infoBorder,
},
},
},
plugins: [],
};
I also noticed that I don't get the expo-router
routes intellisense :(
I'm also facing the same issue, followed the instructions and multiple solutions. Did you ever get this working? @stesvis
I followed all the instructions but VS Code is still not providing any intellisense when I type the class names:
I am using
"twrnc": "^4.5.1"
in VS Code1.94.0
Am I missing something obvious?