web/components.json
Yoga Pangestu 108741d877 feat: initialize Nuxt 4 project with Tailwind CSS and Shadcn components
- Added nuxt.config.ts for project configuration
- Created package.json with necessary dependencies and scripts
- Added favicon.ico for branding
- Included robots.txt for search engine directives
- Set up tsconfig.json for TypeScript support
2026-07-23 20:41:23 +07:00

25 lines
519 B
JSON

{
"$schema": "https://shadcn-vue.com/schema.json",
"style": "new-york",
"font": "inter",
"typescript": true,
"tailwind": {
"config": "",
"css": "app/assets/css/tailwind.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"pointer": false,
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"composables": "@/composables"
},
"registries": {}
}