/* eslint-disable */ const defaultTheme = require('tailwindcss/defaultTheme'); module.exports = { purge: ['./src/pages/**/*.{ts,tsx}', './src/components/**/*.{ts,tsx}'], theme: { extend: { fontFamily: { sans: ['Inter var', ...defaultTheme.fontFamily.sans], }, }, }, variants: { padding: ['first', 'last'], borderWidth: ['first', 'last'], }, plugins: [ require('@tailwindcss/ui')({ layout: 'sidebar', }), ], };