diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /app.vue | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'app.vue')
| -rw-r--r-- | app.vue | 63 |
1 files changed, 35 insertions, 28 deletions
@@ -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> |
