No description
  • TypeScript 98.5%
  • CSS 1.3%
  • HTML 0.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-25 11:37:44 +07:00
public fix: remove the redunant file 2026-08-18 15:17:26 +07:00
src fix: improve the ui 2026-08-25 11:37:44 +07:00
.env.example feat: integrate the api for authentication 2026-08-18 16:44:57 +07:00
.gitignore fix: improve the ui 2026-08-19 21:59:29 +07:00
.oxlintrc.json feat: init the project 2026-08-18 11:39:04 +07:00
bun.lock feat: integrate the api for authentication 2026-08-18 16:44:57 +07:00
index.html feat: init the project 2026-08-18 11:39:04 +07:00
package.json feat: integrate the api for authentication 2026-08-18 16:44:57 +07:00
pnpm-lock.yaml feat: init the project 2026-08-18 11:39:04 +07:00
README.md feat: init the project 2026-08-18 11:39:04 +07:00
tsconfig.app.json feat: init the project 2026-08-18 11:39:04 +07:00
tsconfig.json feat: init the project 2026-08-18 11:39:04 +07:00
tsconfig.node.json feat: init the project 2026-08-18 11:39:04 +07:00
vite.config.ts feat: init the project 2026-08-18 11:39:04 +07:00
wrangler.jsonc fix: update the wrangler config 2026-08-18 16:46:03 +07:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some Oxlint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is enabled on this template. See this documentation for more information.

Note: This will impact Vite dev & build performances.

Expanding the Oxlint configuration

If you are developing a production application, we recommend enabling type-aware lint rules by installing oxlint-tsgolint and editing .oxlintrc.json:

{
  "$schema": "./node_modules/oxlint/configuration_schema.json",
  "plugins": ["react", "typescript", "oxc"],
  "options": {
    "typeAware": true
  },
  "rules": {
    "react/rules-of-hooks": "error",
    "react/only-export-components": ["warn", { "allowConstantExport": true }]
  }
}

See the Oxlint rules documentation for the full list of rules and categories.