Files
xl-mobile/tailwind.config.js

17 lines
423 B
JavaScript
Raw Permalink Normal View History

2025-05-07 08:50:01 +08:00
/** @type {import('tailwindcss').Config} */
2025-03-24 15:01:39 +08:00
module.exports = {
2025-05-07 08:50:01 +08:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}"],
2025-03-24 15:01:39 +08:00
theme: {
2025-05-07 08:50:01 +08:00
extend: {}
2025-03-24 15:01:39 +08:00
},
plugins: [],
2025-05-07 08:50:01 +08:00
presets: [
require("tailwindcss-rem2px-preset").createPreset({
// 32 意味着 1rem = 32rpx
fontSize: 32,
// 转化的单位,可以变成 px / rpx
unit: "rpx"
})
]
2025-03-24 15:01:39 +08:00
};