Add launch configuration for Chrome debugging in VSCode and set up TailwindCSS configuration with animations and theme customization
19 lines
420 B
JSON
19 lines
420 B
JSON
{
|
|
"$schema": "https://radix.shadcn-vue.com/schema.json",
|
|
"style": "new-york",
|
|
"typescript": true,
|
|
"tsConfigPath": ".nuxt/tsconfig.json",
|
|
"tailwind": {
|
|
"config": "tailwind.config.ts",
|
|
"css": "app/assets/css/main.css",
|
|
"baseColor": "neutral",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"framework": "nuxt",
|
|
"aliases": {
|
|
"components": "~/components/pub",
|
|
"utils": "~/lib/utils"
|
|
}
|
|
}
|