Commit 6c1cc4b89335612ce592b34d3d7f82a32f81842b
1 parent
a6d4ac9c
feat(frontend): bootstrap Vite + React + AntD + Vitest 骨架
REQ_ID: FE-01
Showing
11 changed files
with
5224 additions
and
0 deletions
Too many changes to show.
To preserve performance only 2 of 11 files are displayed.
frontend/.gitignore
0 → 100644
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> |