No description
Find a file
vickytechkey 120fdcc69a
Some checks failed
Beta CI/CD Pipeline / build-and-test (push) Failing after 44s
Beta CI/CD Pipeline / deploy-beta (push) Has been skipped
feat(login): support login with business email or phone number
2026-08-13 10:14:56 +05:30
.forgejo/workflows workflow: split into branch-specific pipelines 2026-08-09 07:52:17 +05:30
cypress correct production api base url to http://16.113.57.127:8080 2026-08-09 21:42:31 +05:30
public add public/.htaccess proxy config for Hostinger Option B 2026-08-09 21:59:00 +05:30
src feat(login): support login with business email or phone number 2026-08-13 10:14:56 +05:30
.gitignore add password visibility toggles, confirm password field, terms policy check, and format validation for email and phone 2026-08-09 13:05:45 +05:30
.oxlintrc.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
architecture_diagram.md docs: add architecture and module design specification for the supplier portal 2026-08-08 12:53:37 +05:30
business_overview.pptx adding aws db 2026-08-12 18:18:47 +05:30
cypress.config.ts update cypress:run to use headed mode 2026-08-09 11:28:41 +05:30
guide.md test the job upgrade 2026-08-09 07:35:49 +05:30
HLD_optimized.docx adding aws db 2026-08-12 18:18:47 +05:30
HLD_optimized.pptx adding aws db 2026-08-12 18:18:47 +05:30
index.html Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
package-lock.json add password visibility toggles, confirm password field, terms policy check, and format validation for email and phone 2026-08-09 13:05:45 +05:30
package.json add password visibility toggles, confirm password field, terms policy check, and format validation for email and phone 2026-08-09 13:05:45 +05:30
README.md Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.app.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.node.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
vite.config.ts Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
vitest.config.ts fix: correct vitest config import path and update CI trigger syntax in woodpecker configuration 2026-08-08 13:24:40 +05:30

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 not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

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.