mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-08 07:41:10 +08:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
// 配置需要处理的文件
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}', // 处理所有 Vue、JS、TS、JSX、TSX 文件
|
|
],
|
|
// 主题配置
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
// 插件配置
|
|
plugins: [],
|
|
}
|