Go to file
2024-11-13 17:25:40 +06:00
public home page video added, tabular report by default division data loaded 2024-11-05 18:32:32 +06:00
src Dashbiard payload location param change fromt name to id 2024-11-13 17:22:57 +06:00
.env.example Sample env file channge 2023-11-05 15:38:43 +06:00
.eslintrc.cjs Rules added for any 2023-11-02 16:41:55 +06:00
.gitignore Rules added for any 2023-11-02 16:41:55 +06:00
index.html Initial commit 2023-09-28 11:02:33 +06:00
package-lock.json feat: initial setup for dashboard 3 2024-10-31 13:23:27 +06:00
package.json taskId:CPVDU-234 2024-05-08 18:27:09 +06:00
postcss.config.js Initial commit 2023-09-28 11:02:33 +06:00
README.md Initial commit 2023-09-28 11:02:33 +06:00
tailwind.config.js Initial commit 2023-09-28 11:02:33 +06:00
tsconfig.json Initial commit 2023-09-28 11:02:33 +06:00
tsconfig.node.json Initial commit 2023-09-28 11:02:33 +06:00
vite.config.ts Initial commit 2023-09-28 11:02:33 +06:00
yarn.lock feat: initial setup for dashboard 3 2024-10-31 13:23:27 +06:00

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:

Expanding the ESLint configuration

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

  • Configure the top-level parserOptions property like this:
   parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
   },
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list