| 123456789101112131415 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
- theme: {
- extend: {},
- screens: {
- xs: '0px',
- sm: '576px',
- md: '768px',
- lg: '992px',
- xl: '1200px',
- },
- },
- plugins: [],
- }
|