- Add authentication middleware to protect routes - Create API endpoints for login, logout, registration, and user info - Develop UI components for login and registration forms - Integrate VeeValidate for form validation - Update environment configuration for Cidaas settings - Add i18n support for English and German languages - Enhance Tailwind CSS for improved styling of auth components - Document authentication flow and testing procedures
21 lines
450 B
JSON
21 lines
450 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "default",
|
|
"typescript": true,
|
|
"tailwind": {
|
|
"config": "tailwind.config.ts",
|
|
"css": "assets/css/tailwind.css",
|
|
"baseColor": "slate",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "~/app/components",
|
|
"utils": "~/lib/utils",
|
|
"ui": "~/app/components/ui",
|
|
"lib": "~/lib",
|
|
"hooks": "~/hooks"
|
|
},
|
|
"iconLibrary": "lucide"
|
|
}
|