add frontend

This commit is contained in:
C菌
2023-05-13 04:41:35 +08:00
parent b38a215125
commit cc6678c201
23 changed files with 2047 additions and 5 deletions

11
web/tailwind.config.js Normal file
View File

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