added tailwind to the project, we shall see how it goes.

This commit is contained in:
ajdj100
2023-05-20 00:09:58 -04:00
parent a0907bba4d
commit 03a82ca88a
5 changed files with 509 additions and 98 deletions

View File

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