Skip to content

Commit 1a10726

Browse files
committed
Fixed the build issue
Signed-off-by: Noorain Panjwani <[email protected]>
1 parent b86d224 commit 1a10726

6 files changed

+246
-1
lines changed

components.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/app/globals.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/ui/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"@types/react": "^18.3.12",
2222
"@types/react-dom": "^18.3.1",
2323
"@vitejs/plugin-react-swc": "^3.5.0",
24+
"autoprefixer": "^10.4.20",
2425
"eslint": "^9.15.0",
2526
"eslint-config-prettier": "^9.1.0",
2627
"eslint-plugin-react-hooks": "^5.0.0",
@@ -30,6 +31,7 @@
3031
"prettier": "^3.4.2",
3132
"prettier-plugin-tailwindcss": "^0.6.9",
3233
"tailwindcss": "^3.4.16",
34+
"tailwindcss-animate": "^1.0.7",
3335
"typescript": "~5.6.2",
3436
"typescript-eslint": "^8.15.0",
3537
"vite": "^6.0.1"

pnpm-lock.yaml

Lines changed: 118 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

0 commit comments

Comments
 (0)