build: add vscode launch config and tailwind config

Add launch configuration for Chrome debugging in VSCode and set up TailwindCSS configuration with animations and theme customization
This commit is contained in:
Khafid Prayoga
2025-08-26 17:05:08 +07:00
parent 153c171a3b
commit 04b87733d5
12 changed files with 867 additions and 384 deletions
+6 -8
View File
@@ -1,20 +1,18 @@
{
"$schema": "https://shadcn-vue.com/schema.json",
"$schema": "https://radix.shadcn-vue.com/schema.json",
"style": "new-york",
"typescript": true,
"tsConfigPath": ".nuxt/tsconfig.json",
"tailwind": {
"config": "",
"config": "tailwind.config.ts",
"css": "app/assets/css/main.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"framework": "nuxt",
"aliases": {
"components": "~/components/pub",
"composables": "~/composables",
"utils": "~/lib/utils",
"ui": "~/components/pub/ui",
"lib": "~/lib"
},
"iconLibrary": "lucide"
"utils": "~/lib/utils"
}
}