Files
frontend/webpage/tailwind.config.js
2025-12-07 16:46:44 +08:00

12 lines
265 B
JavaScript

// File: webpage/tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}", // 確保掃描所有 src 裡面的元件檔案
],
theme: {
extend: {},
},
plugins: [],
}