18 lines
327 B
JavaScript
18 lines
327 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx}",
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}"
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '2rem'
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|