-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
29 lines (27 loc) · 1.08 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<script setup lang="ts">
useHead({
charset: "utf-8",
titleTemplate: (title) => `${title} | SimpleLog`,
link: [{ rel: "icon", href: "/logo.png" }],
})
</script>
<template>
<div>
<Link rel="manifest" href="/manifest.json" />
<!-- ios support -->
<Link rel="apple-touch-icon" href="/images/icons/icon-72x72.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-96x96.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-128x128.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-144x144.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-152x152.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-192x192.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-384x384.png" />
<Link rel="apple-touch-icon" href="/images/icons/icon-512x512.png" />
<Link rel="icon" href="/images/icons/icon-512x512.png" />
<Meta name="apple-mobile-web-app-status-bar" content="#121827" />
<Meta name="theme-color" content="#121827" />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>