Front-End mobile UI of precaution

Carlos 2e1c434f32 feat: move basic service to store před 2 měsíci
.vscode 2e1c434f32 feat: move basic service to store před 2 měsíci
public bcfa8daccd feat: basic authentication and basic data před 2 měsíci
src 2e1c434f32 feat: move basic service to store před 2 měsíci
.env.development 307b120719 feat: multiple env před 2 měsíci
.env.stage 307b120719 feat: multiple env před 2 měsíci
.gitignore 1e2cfa1c64 feat: upload .setting před 2 měsíci
.node-version 6326d803b8 feat:测试服配置 před 2 měsíci
.prettierrc.json 03e8ebadd0 init před 2 měsíci
README.md 03e8ebadd0 init před 2 měsíci
eslint.config.js 03e8ebadd0 init před 2 měsíci
gulpfile.mjs 6326d803b8 feat:测试服配置 před 2 měsíci
index.html bcfa8daccd feat: basic authentication and basic data před 2 měsíci
package.json 307b120719 feat: multiple env před 2 měsíci
pnpm-lock.yaml 2e1c434f32 feat: move basic service to store před 2 měsíci
tsconfig.app.json 03e8ebadd0 init před 2 měsíci
tsconfig.json 03e8ebadd0 init před 2 měsíci
tsconfig.node.json 03e8ebadd0 init před 2 měsíci
uno.config.ts 9abd7fc188 feat: portal trial před 2 měsíci
vite.config.ts 2e1c434f32 feat: move basic service to store před 2 měsíci

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:

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 tseslint.config({
    languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
    },
    })
    
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked

  • Optionally add ...tseslint.configs.stylisticTypeChecked

  • Install eslint-plugin-react and update the config:

    // eslint.config.js
    import react from 'eslint-plugin-react'
    
    export default tseslint.config({
    // Set the react version
    settings: { react: { version: '18.3' } },
    plugins: {
    // Add the react plugin
    react,
    },
    rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
    },
    })