// tailwind.config.js const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { corePlugins: { preflight: true, float: false, }, purge: { enabled: process.env.NODE_ENV !== 'development', content: ['./src/**/*.js'], options: { defaultExtractor: content => content.match(/[\w-/.:]+(? ({ sm: { 'input, textarea, multiselect, select': { fontSize: theme('fontSize.sm'), padding: `${theme('spacing.1')} ${theme('spacing.2')}`, }, select: { paddingRight: `${theme('spacing.4')}`, }, 'checkbox, radio': { width: theme('spacing.3'), height: theme('spacing.3'), }, }, }), }, variants: {}, plugins: [require('@tailwindcss/ui')], }