snp-batch-validation/frontend
HYOJIN ad18ab9c30 feat(email): Bypass API 계정 이메일 알림 및 거절 후속 조치 (#140)
- 이메일 공통 모듈 (spring-boot-starter-mail, EmailService, Thymeleaf 템플릿)
- 승인 시 계정 발급 이메일 / 거절 시 사유 이메일 자동 발송
- 재심사 기능 (REJECTED → PENDING)
- UI 텍스트 리레이블링 (S&P Global API)
- 신청 폼 전화번호 필드 제거 및 레이아웃 개선
2026-04-03 10:34:45 +09:00
..
public feat: favicon 변경 (#105) 2026-03-26 14:20:09 +09:00
src feat(email): Bypass API 계정 이메일 알림 및 거절 후속 조치 (#140) 2026-04-03 10:34:45 +09:00
.gitignore feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
eslint.config.js feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
index.html feat: 프론트엔드 UI 개편 - 메인 화면 및 섹션별 네비게이션 (#115) 2026-03-31 11:02:27 +09:00
package-lock.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
package.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
README.md feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.app.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
tsconfig.node.json feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09:00
vite.config.ts feat: 배치 모니터링 React SPA 전환 및 10대 기능 강화 2026-02-17 12:53:54 +09: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...
    },
  },
])