initialized web page (React + Tailwind CSS)

This commit is contained in:
Penguin-71630
2025-12-07 16:46:44 +08:00
parent 3092f95652
commit f6db3c2ccd
50 changed files with 6879 additions and 0 deletions

View File

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