prometheus/web/ui/mantine-ui
Julius Volz 0c55b25919 Show a gray health ring for empty pools
Signed-off-by: Julius Volz <julius.volz@gmail.com>
2024-08-06 09:16:18 +02:00
..
public Build both old & new UI into Prometheus, allow choosing via feature flag 2024-04-18 15:08:40 +02:00
src Show a gray health ring for empty pools 2024-08-06 09:16:18 +02:00
.eslintrc.cjs A lot of work around uPlot and resolution picking 2024-07-21 23:55:08 +02:00
.gitignore
index.html Build both old & new UI into Prometheus, allow choosing via feature flag 2024-04-18 15:08:40 +02:00
package.json Update Mantine dependencies 2024-08-02 19:45:29 +02:00
postcss.config.cjs
README.md
tsconfig.json
tsconfig.node.json
vite.config.ts Point new UI local API proxying back to localhost Prometheus 2024-07-25 14:28:56 +02: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