- Install and configure vite-plugin-pwa - Add manifest configuration for MiChangarrito - Create SVG icons (192x192, 512x512) with MCH branding - Add apple-touch-icon and favicon - Update index.html with PWA meta tags - Enable service worker with workbox for offline caching Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
568 B
HTML
17 lines
568 B
HTML
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#f97316" />
|
|
<meta name="description" content="MiChangarrito - Sistema POS para changarritos" />
|
|
<title>MiChangarrito</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|