build(style): ⬇️ Adiciona suporte ao tailwind

Foi preciso fazer um downgrade do CRA (create-react-app) para que fosse possivel o suporte ao tailwind
This commit is contained in:
Hugo Falcao
2022-09-02 00:10:12 -03:00
parent 99b01cad85
commit 391907a61d
9 changed files with 7843 additions and 42013 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
mode: 'jit',
purge: ['./public/index.html', './src/**/*.{js,jsx,ts,tsx,css}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}