mirror of
https://github.com/towfiqi/serpbear
synced 2025-06-26 18:15:54 +00:00
24 lines
471 B
JavaScript
24 lines
471 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
purge: {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
},
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
safelist: [
|
|
'max-h-48',
|
|
'w-[150px]',
|
|
'w-[240px]',
|
|
'min-w-[270px]',
|
|
'min-w-[180px]'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} |