/* * @Author: October 382756525@qq.com * @Date: 2022-07-29 15:25:16 * @LastEditors: October 382756525@qq.com * @LastEditTime: 2022-08-07 20:58:59 * @Description: tailwind配置文件 * */ /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"], theme: { extend: { width: { base: "12rem", }, }, }, variants: { extend: {}, }, plugins: [ function ({ addBase, theme }) { addBase({ ".el-button": { "background-color": "var(--el-button-bg-color,val(--el-color-white))", }, }); }, ], };