Go to file
bizcochito 3883d21e86
Build image / build (pull_request) Failing after 5m13s Details
Merge branch 'main' into renovate/docker-setup-buildx-action-3.x
2024-12-01 17:27:22 +00:00
.gitea/workflows Update docker/setup-buildx-action action to v3 2024-12-01 13:03:52 +00:00
src chore: prune unused files 2024-12-01 18:25:52 +01:00
.dockerignore chore: prune unused files 2024-12-01 18:25:52 +01:00
.gitignore First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
Dockerfile migrate to npm 2024-12-01 13:42:05 +01:00
README.md First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
compose.yaml implemented basic UI with hardcoded urls and credentials 2024-04-21 14:11:55 +02:00
index.html delete favicon and change tittle 2024-04-27 18:23:40 +02:00
init-mongo.js fmt 2024-04-27 18:17:56 +02:00
package-lock.json chore: prune unused files 2024-12-01 18:25:52 +01:00
package.json chore: prune unused files 2024-12-01 18:25:52 +01:00
renovate.json Add renovate.json 2024-11-23 11:42:56 +00:00
tsconfig.json First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
tsconfig.node.json First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
vite.config.ts fmt 2024-04-27 18:17:56 +02:00

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 {
  // 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