mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
Server: - Add message search and pinned messages support - Add admin hub integration and live connection stats - Update admin test mocks for hub interface Client: - Add data-testid attributes to components for E2E testing - Add window management capabilities (position, size, maximize) - Add prod E2E test config and script - Fix CSS imports (use vite bundling instead of HTML link tags) - Add inline styles to InviteManager overlay for reliability - Update CHATSERVER.md references from WPF to Tauri Docs: - Update quick-start guide
13 lines
292 B
HTML
13 lines
292 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OwnCord</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|