qnc-webview-tob/tailwind.config.js
2025-03-08 15:26:04 +08:00

12 lines
212 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html", // 如果是 Vite 项目
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};