14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
/** @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}'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [],
|
|
important: true // Add this line
|
|
};
|