test_task_crm/frontend
Artem Kashaev c427c8390d
Build and deploy / build (push) Successful in 37s Details
Build and deploy / deploy (push) Successful in 24s Details
fix: update API_URL to use production endpoint
2025-12-01 15:44:48 +05:00
..
.husky feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
dev-dist feat: enhance forms with improved select components and data handling for contacts and deals 2025-12-01 14:16:24 +05:00
public feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
src fix: update API_URL to use production endpoint 2025-12-01 15:44:48 +05:00
README.md feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
eslint.config.js feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
index.html feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
package-lock.json fix: update Node.js version in CI workflow from 22 to 24 and add peer dependencies in package-lock.json 2025-12-01 15:01:57 +05:00
package.json fix: enable CI environment variable for frontend build and update build script 2025-12-01 15:14:32 +05:00
postcss.config.js feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
prettier.config.mjs feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
tailwind.config.ts feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
tsconfig.app.json feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
tsconfig.json feat: add compiler options and path mappings to TypeScript configuration 2025-12-01 14:56:27 +05:00
tsconfig.node.json feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00
vite.config.ts feat: add initial implementation of Kitchen CRM with authentication and dashboard features 2025-12-01 12:29:02 +05:00

README.md

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])