- Adds new path aliases for improved code organization - Updates dependencies to latest versions including vue-sonner v2.0.0 - Removes sourcemap configuration from Nuxt config - Enhances API documentation with OpenAPI schemas - Removes unused security schemes and Wrangler configuration These changes modernize the project setup while improving documentation and removing unnecessary configurations.
18 lines
405 B
JSON
18 lines
405 B
JSON
{
|
|
"$schema": "https://shadcn-vue.com/schema.json",
|
|
"style": "default",
|
|
"typescript": true,
|
|
"tailwind": {
|
|
"config": "tailwind.config.js",
|
|
"css": "assets/css/tailwind.css",
|
|
"baseColor": "zinc",
|
|
"cssVariables": true
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"composables": "@/composables"
|
|
}
|
|
}
|