install tailwind

This commit is contained in:
sindhu
2023-11-06 09:45:23 +07:00
parent 1afbcd0bda
commit d60d251223
6 changed files with 622 additions and 0 deletions

View File

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