This commit is contained in:
2023-03-14 21:00:07 +08:00
commit e86ac176d1
16 changed files with 1718 additions and 0 deletions

8
tailwind.config.cjs Normal file
View File

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