mirror of
https://github.com/allinssl/allinssl.git
synced 2025-12-15 09:55:37 +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: [],
|
|
}
|