Added Tailwind

This commit is contained in:
Ari Liu 2024-10-20 10:23:54 +00:00
parent d11077761f
commit 3ad4b9284f
Signed by: AhriVastaya
SSH Key Fingerprint: SHA256:B1V16w1/wkA2kWFt/YMDUqSAYIj6PpN99WCxVaK2yVo
2 changed files with 15 additions and 0 deletions

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}