Tailwind setup

This commit is contained in:
Julien Valverdé
2024-07-07 21:41:54 +02:00
parent a8f2df8512
commit b89ecc6526
7 changed files with 32 additions and 20 deletions

View File

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