Skip to content

Commit aa25a8d

Browse files
feat: update tailwind.config.js
1 parent 671efa6 commit aa25a8d

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

postcss.config.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
module.exports = {
22
plugins: {
33
tailwindcss: {},
4-
'postcss-flexbugs-fixes': {},
5-
'postcss-preset-env': {
6-
autoprefixer: {
7-
flexbox: 'no-2009',
8-
},
9-
stage: 3,
10-
features: {
11-
'custom-properties': false,
12-
},
13-
},
4+
autoprefixer: {},
145
},
156
}

tailwind.config.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
module.exports = {
2-
future: {
3-
removeDeprecatedGapUtilities: true,
2+
purge: ['./src/components/**/*.{js,ts,tsx}', './pages/**/*.{js,ts,tsx}'],
3+
darkMode: false, // or 'media' or 'class'
4+
theme: {
5+
extend: {},
6+
},
7+
variants: {
8+
extend: {},
49
},
5-
purge: ['./src/components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
6-
variants: {},
710
plugins: [],
811
}

0 commit comments

Comments
 (0)