Go to file
Alie c48aad6cba
Build image / build (push) Successful in 2m11s Details
delete favicon and change tittle
2024-04-27 18:23:40 +02:00
.gitea/workflows add build yaml for docker image creation 2024-04-27 18:18:50 +02:00
src fmt 2024-04-27 18:17:56 +02:00
test/unit fmt 2024-04-27 18:17:56 +02:00
.dockerignore a 2024-04-21 10:47:31 +02:00
.eslintrc.cjs fmt 2024-04-27 18:17:56 +02:00
.gitignore First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
Dockerfile fmt 2024-04-27 18:17:56 +02:00
README.md First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
bun.lockb a 2024-04-21 10:47:31 +02:00
bunfig.toml imporve dockerfie form layer caching 2024-04-20 14:08:03 +02:00
compose.yaml implemented basic UI with hardcoded urls and credentials 2024-04-21 14:11:55 +02:00
happydom.ts Added gelbooru image endpoint and testing 2024-03-03 12:08:12 +01: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.json a 2024-04-21 10:47:31 +02: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
yarn.lock a 2024-04-21 10:47:31 +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