1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| // 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: [],
| }
|
|