Spaces:
No application file
No application file
import type { Config } from 'tailwindcss'; | |
const config: Config = { | |
content: [ | |
'./pages/**/*.{js,ts,jsx,tsx,mdx}', | |
'./components/**/*.{js,ts,jsx,tsx,mdx}', | |
'./app/**/*.{js,ts,jsx,tsx,mdx}', | |
], | |
theme: { | |
extend: {}, | |
}, | |
plugins: [require('@tailwindcss/typography')], | |
}; | |
export default config; | |