ADAMI — торговая компания, импорт и экспорт товаров из Южной Кореи
  • JavaScript 48.7%
  • TypeScript 34.3%
  • CSS 7.9%
  • Shell 7.8%
  • HTML 1%
  • Other 0.3%
Find a file
andrei 2d5696f1e0
All checks were successful
Forgejo Smoke Test / Smoke (push) Successful in 2s
Adami Site CI / lint-and-build (push) Successful in 34s
Adami Site CI / deploy-site (push) Successful in 21s
Merge pull request '[CL-ADAMI-SITE-CD] feat(ci): авторотация релиза adami.kr на main' (#11) from feature/claude-adami-site-cd into main
2026-07-06 22:12:01 +00:00
.forgejo [CL-ADAMI-SITE-CD] feat(ci): авторотация релиза adami.kr после зелёного CI на main 2026-07-07 01:10:32 +03:00
.seo-agent [CL-SEO-AGENT-ADAMI-P1B] feat(seo): AI SEO Agent CLI + weekly Forgejo cron для adami.kr 2026-05-25 19:13:34 +03:00
public feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
scripts [CL-SEO] SEO audit -> deploy TG chat (server-owned, adami) (#7) 2026-05-25 19:51:14 +00:00
src [CL-ADAMI-MOBILE] fix: мобильная адаптация adami.kr — inline-стили перебивали responsive-классы 2026-07-07 00:49:54 +03:00
.gitignore [CL-SEO-AGENT-ADAMI-P1B] feat(seo): AI SEO Agent CLI + weekly Forgejo cron для adami.kr 2026-05-25 19:13:34 +03:00
Dockerfile fix: use nginx template for dynamic PORT injection 2026-04-04 14:26:37 +03:00
eslint.config.js feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
index.html feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
nginx.conf fix: use $PORT variable for Railway compatibility 2026-04-04 14:26:34 +03:00
package-lock.json [CL-ADAMI-LEADS] fix: подключить форму заявок adami.kr к API 2026-06-15 19:03:51 +00:00
package.json [CL-ADAMI-LEADS] fix: подключить форму заявок adami.kr к API 2026-06-15 19:03:51 +00:00
README.md feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
tsconfig.app.json [CL-DEPS] chore(deps): полное обновление зависимостей до latest 2026-06-11 14:24:42 +03:00
tsconfig.json feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
tsconfig.node.json feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
vite.config.ts feat: ADAMI landing page — Apple-style redesign 2026-03-29 05:14:34 +03:00
vitest.config.ts [CL-ADAMI-LEADS] fix: подключить форму заявок adami.kr к API 2026-06-15 19:03:51 +00: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:

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 ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])