feat: PWA setup + /app base path
- Landing page at / - Vue app at /app (PWA installable) - Added manifest.json for mobile install - iOS + Android meta tags - Updated router base path
This commit is contained in:
21
dist/index.html
vendored
21
dist/index.html
vendored
@@ -2,11 +2,24 @@
|
||||
<html lang="de">
|
||||
<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" />
|
||||
<link rel="icon" type="image/svg+xml" href="/app/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>SeCu - Mitarbeiterverwaltung</title>
|
||||
<script type="module" crossorigin src="/assets/index-CVUlgynU.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-CA5dNQfW.css">
|
||||
|
||||
<!-- PWA -->
|
||||
<link rel="manifest" href="/app/manifest.json" />
|
||||
<meta name="theme-color" content="#667eea" />
|
||||
|
||||
<!-- iOS PWA -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="apple-mobile-web-app-title" content="SeCu" />
|
||||
<link rel="apple-touch-icon" href="/app/icon-192.png" />
|
||||
|
||||
<!-- Android -->
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<script type="module" crossorigin src="/app/assets/index-DFiGttzi.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/app/assets/index-CA5dNQfW.css">
|
||||
</head>
|
||||
<body class="bg-gray-50 dark:bg-gray-900">
|
||||
<div id="app"></div>
|
||||
|
||||
Reference in New Issue
Block a user