Skip to content

Commit 65832ba

Browse files
committed
fix(demo): use head
1 parent 09f697b commit 65832ba

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

demo/app.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@
77
</template>
88

99
<script setup lang="ts">
10+
useHead({
11+
meta: [
12+
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
13+
],
14+
link: [
15+
{ rel: 'icon', href: '/favicon.ico' },
16+
],
17+
htmlAttrs: {
18+
lang: 'en',
19+
},
20+
})
21+
1022
const title = 'Nuxt 3 x Supabase'
1123
const description = 'Demo of a simple todo list app using Nuxt and Supabase.'
1224

0 commit comments

Comments
 (0)