zhangwei
2025-12-18 f06e90a56101f9ef2c69a27fc77d3489409dc05a
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: [],
}