serpbear/tailwind.config.js
2022-12-06 13:22:56 +06:00

25 lines
474 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: [],
};