Add tailwindcss

This commit is contained in:
Hydroxycarbamide 2022-11-21 10:50:02 +01:00
parent 2a566eee44
commit 151cb6dd3a
3 changed files with 336 additions and 5 deletions

11
tailwind.config.js Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
plugins: []
}