Skip to content

Commit 69d03c5

Browse files
committed
Add tailwind css and post css config files
1 parent e634572 commit 69d03c5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const colors = require('tailwindcss/colors');
22

33
module.exports = {
4-
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
4+
content: ['./src/**/*.{js,jsx,ts,tsx}'],
55
darkMode: 'class',
66
theme: {
77
extend: {

0 commit comments

Comments
 (0)