Skip to content

Commit 4b3908b

Browse files
committed
feat: added required tailwindcss config
1 parent 7a5cb3c commit 4b3908b

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
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

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: [
4+
'./app/**/*.{js,ts,tsx,jsx}',
5+
],
6+
theme: {
7+
extend: {},
8+
},
9+
plugins: [],
10+
};

0 commit comments

Comments
 (0)