Jiseoup/showmycodePublic
EN|KO
  • 코드
  • 커밋
  • 풀 리퀘스트
← 목록으로

chore: remove unused tailwind.config.ts and fix shadcn config for Tailwind v4

JiseoupJiseoup · 2026년 4월 13일91df04a

변경된 파일2개+1 -40

변경된 파일

+1 -40 · 2개

@@ -4,7 +4,7 @@
"rsc": true,
"tsx": true,
"tailwind": {
- "config": "tailwind.config.ts",
+ "config": "",
"css": "app/globals.css",
"baseColor": "zinc",
"cssVariables": true,
@@ -1,39 +0,0 @@
-import type { Config } from "tailwindcss";
-
-const config: Config = {
- darkMode: "class",
- content: [
- "./app/**/*.{ts,tsx}",
- "./components/**/*.{ts,tsx}",
- "./lib/**/*.{ts,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- border: "hsl(var(--border))",
- background: "hsl(var(--background))",
- foreground: "hsl(var(--foreground))",
- muted: {
- DEFAULT: "hsl(var(--muted))",
- foreground: "hsl(var(--muted-foreground))",
- },
- accent: {
- DEFAULT: "hsl(var(--accent))",
- foreground: "hsl(var(--accent-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)",
- },
- },
- },
- plugins: [],
-};
-
-export default config;