blakeblackshear.frigate/web
Nicolas Mowen 4216d08099
Backend and webui fixes (#11309)
* Ensure that items without end times are set to not have a snapshot

* Save full frame if no frame is currently saved

* Webui fixes

* Cleanup
2024-05-09 08:20:33 -05:00
..
images
public Don't use apple icon for android pwa (#10535) 2024-03-19 08:41:24 -05:00
src Backend and webui fixes (#11309) 2024-05-09 08:20:33 -05:00
themes sane colors for themes (#11126) 2024-04-26 14:30:57 -06:00
.eslintrc.cjs
.gitignore Use new UI (#8983) 2024-01-31 12:56:11 +00:00
components.json
index.html use credentials for webmanifest (#10447) 2024-03-14 06:36:56 -06:00
package-lock.json Web Deps (#11304) 2024-05-09 08:20:07 -05:00
package.json Web Deps (#11304) 2024-05-09 08:20:07 -05:00
postcss.config.js
README.md Use new UI (#8983) 2024-01-31 12:56:11 +00:00
site.webmanifest
tailwind.config.js UI Fixes (#11179) 2024-04-30 19:35:23 -05:00
tsconfig.json
tsconfig.node.json
vite.config.ts

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