Files
APIPark/frontend/packages/core
ScarChin 6fe7cf18bd fix: login page redirect multiple times (#166)
* fix: System Settings - General After changing the interface language, the internal pages do not automatically follow the language switch

* fix: login page language error
2025-01-13 18:33:55 +08:00
..
2024-08-30 19:22:38 +08:00
2024-10-28 13:39:47 +08:00
2024-08-12 21:38:09 +08:00
2024-10-29 18:32:45 +08:00
2025-01-07 18:47:08 +08:00
2024-10-28 13:39:47 +08:00
2024-10-28 13:39:47 +08:00
2024-10-28 13:39:47 +08:00
2025-01-07 18:47:08 +08:00
2024-12-13 20:00:38 +08: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:
export default {
  // other rules...
  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