skip to Main Content

Reactjs – tailwindcss not working properly for some strange reason

For some reason my tailwindcss isn't working correctly. Did I forget something? tailwind.config.js /** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./app/**/*.{js,ts,jsx,tsx,mdx}", "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", // Or if using `src` directory: "./src/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: {}, }, plugins: [],…

VIEW QUESTION
Back To Top
Search