initial: setup tailwind

This commit is contained in:
2026-02-23 09:28:33 +07:00
parent aa8684ccaf
commit 3a35efbce3
7 changed files with 594 additions and 3 deletions

13
tailwind.config.js Normal file
View File

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