/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], theme: { extend: { // 添加自定义的断点 screens: { md: '0px', lg: '500px', xk: '1366px', x1k: '1920px', x2k: '2560px', x4k: '3840px', }, //自定义宽度 width: {}, //自定义高度 height: { 200: '200px', }, }, }, plugins: [], }