Files
NetMount/tailwind.config.js
VirtualHotBar dbd5ae6d20 init
2024-03-20 11:00:36 +08:00

13 lines
251 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/*.{js,ts,jsx,tsx}", // 如果你的项目使用的是 TypeScript确保包括 tsx 文件
],
theme: {
extend: {},
},
plugins: [],
}