2022-12-19 21:21:40 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2022-12-19 21:58:26 +01:00
|
|
|
content: [
|
|
|
|
'./app/**/*.tsx',
|
|
|
|
'./components/**/*.tsx',
|
|
|
|
'./lib/**/*.tsx',
|
|
|
|
'./pages/**/*.tsx',
|
|
|
|
],
|
2022-12-19 21:21:40 +01:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
2022-12-24 02:12:10 +01:00
|
|
|
future: {
|
|
|
|
hoverOnlyWhenSupported: true,
|
|
|
|
},
|
2022-12-19 21:21:40 +01:00
|
|
|
}
|