aboutsummaryrefslogtreecommitdiffstats
path: root/app.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app.vue')
-rw-r--r--app.vue63
1 files changed, 35 insertions, 28 deletions
diff --git a/app.vue b/app.vue
index c4ce487..2b58bf1 100644
--- a/app.vue
+++ b/app.vue
@@ -1,38 +1,45 @@
<script setup lang="ts">
-import '~/assets/main.css'
+import '~/assets/main.css';
useHead({
- link: [{
- rel: 'preconnect',
- href: 'https://rsms.me/'
- }, {
- rel: 'stylesheet',
- href: 'https://rsms.me/inter/inter.css',
- crossorigin: ''
- }, {
- rel: 'apple-touch-icon',
- sizes: '180x180',
- href: '/apple-touch-icon.png'
- }, {
- rel: 'icon',
- type: 'image/png',
- sizes: '32x32',
- href: '/favicon-32x32.png'
- }, {
- rel: 'icon',
- type: 'image/png',
- sizes: '16x16',
- href: '/favicon-16x16.png'
- }, {
- rel: 'manifest',
- href: '/site.webmanifest'
- }]
-})
+ link: [
+ {
+ rel: 'preconnect',
+ href: 'https://rsms.me/',
+ },
+ {
+ rel: 'stylesheet',
+ href: 'https://rsms.me/inter/inter.css',
+ crossorigin: '',
+ },
+ {
+ rel: 'apple-touch-icon',
+ sizes: '180x180',
+ href: '/apple-touch-icon.png',
+ },
+ {
+ rel: 'icon',
+ type: 'image/png',
+ sizes: '32x32',
+ href: '/favicon-32x32.png',
+ },
+ {
+ rel: 'icon',
+ type: 'image/png',
+ sizes: '16x16',
+ href: '/favicon-16x16.png',
+ },
+ {
+ rel: 'manifest',
+ href: '/site.webmanifest',
+ },
+ ],
+});
useSeoMeta({
title: 'Quests Web Editor',
ogTitle: 'Quests Web Editor',
-})
+});
</script>
<template>