我使用shadcn ui(https://ui.shadcn.com/)与next.js,一个问题发生,样式布局不工作。
我查看了开发工具,发现bg-card类,card-foreground类没有变量与之关联。
这是我的配置
我在app/layout.tsx中添加了导入'../styles/globals.css'
tailwind.config.ts
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
keyframes: {
"accordion-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [require("tailwindcss-animate")],
}
到目前为止,我没有看到任何错误,不知道为什么造型失败的工作
1条答案
按热度按时间yptwkmov1#
我也有同样的问题,但我设法解决了。初始化着色配置时:
npx shadcn-ui@latest init
,请确保给予正确的路径和名称为您的文件。站在我这边:
Where is your global CSS file? … app/global.css
=>我不得不将其更改为src/app/globals.css
,因为我在我的nextjs中使用src文件夹Where is your tailwind.config.js located? … tailwind.config.js
=>我不得不将其更改为tailwind.config.ts,因为我使用的是typescript而不是JavaScript。我敢肯定你的错误来自这两个文件之一。
另外,请确保您只有1个globals.css(或global.css)文件和1个tailwind.config.ts(或tailwind.js.js)文件。
如果这不能解决你的问题,就像@ahmed说的,你能把你的globals.css/global.css +你的tailwond.config.ts/.js文件发给我们吗?