This commit is contained in:
王一嘉
2025-07-28 14:24:52 +08:00
commit 0e6011727b
43 changed files with 7977 additions and 0 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue,pug}"],
theme: {
extend: {}
},
corePlugins: {
preflight: false,
space: false,
boxSizing: false,
divideWidth: false,
divideColor: false,
divideStyle: false,
divideOpacity: false
},
plugins: [],
}