tailwindcss 를 로컬에 포함

This commit is contained in:
backuppc
2026-01-21 11:22:48 +09:00
parent 5074f6dc0e
commit 2ce9bffb1d
7 changed files with 689 additions and 2 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}