feat(status-dashboard): add version logging to console
Outputs version 1.1.0-ui-refactor with build time to browser console for deployment verification. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
48d1765be5
commit
c56e97216c
1 changed files with 9 additions and 0 deletions
|
|
@ -8,6 +8,15 @@ import { AdminDashboard } from './AdminDashboard';
|
|||
import { LoginPage } from './LoginPage';
|
||||
import { HostsPage } from './HostsPage';
|
||||
|
||||
const APP_VERSION = '1.1.0-ui-refactor';
|
||||
const BUILD_TIME = '2025-12-25T15:30:00Z';
|
||||
|
||||
console.log(
|
||||
`%c Lilith Status Dashboard v${APP_VERSION} %c Built: ${BUILD_TIME} `,
|
||||
'background: #ff00ff; color: #000; font-weight: bold; padding: 4px 8px;',
|
||||
'background: #00ffff; color: #000; padding: 4px 8px;'
|
||||
);
|
||||
|
||||
export function App() {
|
||||
return (
|
||||
<ThemeProvider defaultTheme="cyberpunk" storageKey="status-page-theme">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue