- Vite dev server pinned to port 5174 (avoids conflict with Wild Cloud on 5173) - .envrc updated with WILD_CENTRAL_VITE_URL=http://localhost:5174 - API base URL set to http://localhost:15055 via .env - Page title changed to "Wild Central" Restart air and the Vite dev server to pick up these changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
642 B
HTML
20 lines
642 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" />
|
|
<meta name="theme-color" content="#0ea5e9" />
|
|
<meta
|
|
name="description"
|
|
content="Wild Central — Network management for your LAN"
|
|
/>
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>Wild Central</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html> |