/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './app/**/*.{vue,js,ts}', './app/templates/**/*.{vue,js,ts}', './components/**/*.{vue,js,ts}', './layouts/**/*.vue', './pages/**/*.vue', './plugins/**/*.{js,ts}', './nuxt.config.{js,ts}' ], theme: { extend: { screens: { xs: '480px' }, container: { center: true, padding: { DEFAULT: '1rem', sm: '1.5rem', lg: '2rem' }, screens: { sm: '640px', md: '768px', lg: '1024px', xl: '1200px', '2xl': '1280px' } } } }, corePlugins: { preflight: true }, plugins: [] }