Add manifest.json and meta tags to enable: - Add to Home Screen on iOS/Android - Standalone mode (no browser UI) - Custom app icon and theme color 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icon-192.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<title>ROA Reports - Rapoarte ERP</title>
|
|
<meta name="description" content="Aplicație pentru rapoarte ERP - facturi și încasări">
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="theme-color" content="#2563eb">
|
|
<meta name="application-name" content="ROA Reports">
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<!-- iOS PWA -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="apple-mobile-web-app-title" content="ROA Reports">
|
|
<link rel="apple-touch-icon" href="/icon-192.png">
|
|
|
|
<!-- Cache busting - forțează reîncărcare asset-uri noi -->
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
<meta http-equiv="Expires" content="0" />
|
|
<meta name="app-version" content="BUILD_TIMESTAMP" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html> |