Skip to content

Commit 1bc3e6b

Browse files
committed
fix(styles) tailwind safe styles
1 parent 1534485 commit 1bc3e6b

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

tailwind.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
/** @type {import('tailwindcss').Config} */
2-
const defaultConfig = require('shadcn/ui/tailwind.config')
3-
42
module.exports = {
5-
...defaultConfig,
63
content: [
7-
...defaultConfig.content,
84
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
95
'./components/**/*.{js,ts,jsx,tsx,mdx}',
106
'./app/**/*.{js,ts,jsx,tsx,mdx}',
@@ -24,9 +20,7 @@ module.exports = {
2420
'text-red-800',
2521
],
2622
theme: {
27-
...defaultConfig.theme,
2823
extend: {
29-
...defaultConfig.theme.extend,
3024
colors: {
3125
border: 'hsl(var(--border))',
3226
input: 'hsl(var(--input))',
@@ -69,5 +63,5 @@ module.exports = {
6963
},
7064
},
7165
},
72-
plugins: [...defaultConfig.plugins, require('tailwindcss-animate')],
66+
plugins: [],
7367
}

0 commit comments

Comments
 (0)