Vite 8, React 19, TypeScript strict, Ant Design 6, React Router 7. Login page, dashboard with stats cards, sidebar menu in Russian. AuthContext with JWT access+refresh tokens via Axios interceptors. Nginx reverse proxy port 5180 with basic auth. Systemd service for Vite dev server. Puppeteer screenshot service. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
360 B
HTML
14 lines
360 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>frontend</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|