2025-03-24 15:01:39 +08:00
|
|
|
// tailwind.config.js
|
|
|
|
|
module.exports = {
|
|
|
|
|
content: [
|
|
|
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}", // 根据你的项目结构调整路径
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
2025-03-25 16:35:39 +08:00
|
|
|
extend: {
|
|
|
|
|
screens: {
|
|
|
|
|
'375': '375px', // 自定义屏幕大小
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-24 15:01:39 +08:00
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
};
|