mirror of
https://github.com/VirtualHotBar/NetMount.git
synced 2026-05-07 21:57:09 +08:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
||
export default {
|
||
content: [
|
||
"./index.html",
|
||
"./src/*.{js,ts,jsx,tsx}", // 如果你的项目使用的是 TypeScript,确保包括 tsx 文件
|
||
],
|
||
theme: {
|
||
extend: {},
|
||
},
|
||
plugins: [],
|
||
}
|
||
|