Added tailwind

This commit is contained in:
aronmal 2023-02-07 19:14:53 +01:00
parent 49a09f9af8
commit 2aa5e4f050
Signed by: aronmal
GPG key ID: 816B7707426FC612
6 changed files with 287 additions and 24 deletions

View file

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