We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df2ee8 commit 93aaf2cCopy full SHA for 93aaf2c
nuxt.config.ts
@@ -1,3 +1,5 @@
1
+const NAME = 'Horu'
2
+
3
export default defineNuxtConfig({
4
future: {
5
compatibilityVersion: 4,
@@ -13,8 +15,15 @@ export default defineNuxtConfig({
13
15
head: {
14
16
charset: 'utf-8',
17
viewport: 'width=device-width, initial-scale=1',
- title: 'Horu.me',
18
+ title: NAME,
19
htmlAttrs: { lang: 'en' },
20
+ meta: [
21
+ { name: 'apple-mobile-web-app-title', content: NAME },
22
+ { name: 'application-name', content: NAME },
23
+ { name: 'twitter:title', content: NAME },
24
+ { name: 'twitter:card', content: 'summary' },
25
+ { property: 'og:title', content: NAME },
26
+ ],
27
},
28
29
0 commit comments