12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: ['./app/**/*.{js,ts,jsx,tsx}', './ui/**/*.{js,ts,jsx,tsx}'],
|
|
future: {
|
|
hoverOnlyWhenSupported: true
|
|
},
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require('@tailwindcss/forms')]
|
|
};
|