tailwind init

This commit is contained in:
Rei
2022-12-07 18:28:34 +01:00
parent 575f65be91
commit fa6921abe2
7 changed files with 1511 additions and 229 deletions

11
tailwind.config.js Normal file
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: [],
}