personal-website/tailwind.config.js

17 lines
278 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.tsx',
'./components/**/*.tsx',
'./lib/**/*.tsx',
'./pages/**/*.tsx',
],
theme: {
extend: {},
},
plugins: [],
future: {
hoverOnlyWhenSupported: true,
},
}