#issues with tailwindcss and next
16 messages · Page 1 of 1 (latest)
did you add these to your globals.css ?
@tailwind base;
@tailwind components;
@tailwind utilities;
yep
do you have a tailwind.config.js?
yes could help
what can i do to help ?
ok thanks a lot
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [],
}
that's it
are you using the src directory?
yeah