This commit is contained in:
quantulr
2024-05-30 17:27:57 +08:00
parent 4e2e93bb81
commit 05a8bf0940
35 changed files with 2083 additions and 1912 deletions

12
tailwind.config.js Normal file
View File

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