Commit 6c1cc4b89335612ce592b34d3d7f82a32f81842b

Authored by zichun
1 parent a6d4ac9c

feat(frontend): bootstrap Vite + React + AntD + Vitest 骨架

REQ_ID: FE-01

Too many changes to show.

To preserve performance only 2 of 11 files are displayed.

frontend/.gitignore 0 → 100644
  1 +node_modules/
  2 +dist/
  3 +coverage/
  4 +.vite/
  5 +*.log
  6 +playwright-report/
  7 +test-results/
... ...
frontend/index.html 0 → 100644
  1 +<!doctype html>
  2 +<html lang="zh-CN">
  3 + <head>
  4 + <meta charset="UTF-8" />
  5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6 + <title>Antler ERP</title>
  7 + </head>
  8 + <body>
  9 + <div id="root"></div>
  10 + <script type="module" src="/src/main.tsx"></script>
  11 + </body>
  12 +</html>
... ...