21 lines
329 B
JavaScript
21 lines
329 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
container: {
|
|
center: true,
|
|
},
|
|
screens: {
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px'
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography')
|
|
],
|
|
}
|