// tailwind.config.js /** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}", ], theme: { screens: { 'xs': '320px', 'sm': '375px', 'md': '414px', 'lg': '768px', 'xl': '1024px', }, extend: {}, }, plugins: [], }