引入 Tailwind CSS 和 shadcn/ui

This commit is contained in:
雨霖铃
2026-05-21 22:57:23 +08:00
parent bb27577278
commit 3eb00d8a29
14 changed files with 1034 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./entrypoints/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./providers/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}',
'./config/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [],
};