ede064cc11
- Create global styles and theme management - Implement app shell layout with sidebar navigation - Add authentication layout and pages for login and registration - Develop dashboard page with placeholder content - Introduce routing guards for guest-only and authenticated routes - Set up Zustand for state management of authentication and theme - Create API types and structures for CRM entities - Configure Vite with PWA support and Tailwind CSS
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
}
|
|
|
|
export default config
|