Skip to content

Commit

Permalink
Updated nuxt config
Browse files Browse the repository at this point in the history
  • Loading branch information
francescomasala committed Feb 12, 2024
1 parent ea2b07b commit 9a03f8e
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ import {fileURLToPath} from 'url'
import VueI18nVitePlugin from '@intlify/unplugin-vue-i18n/vite'

export default defineNuxtConfig({
app: {
head: {
charset: 'utf-16',
title: 'HyperBit SRLs',
viewport: 'width=device-width, initial-scale=1',
meta: [
{property: 'og:title', content: 'HyperBit SRLs'},
{property: 'og:description', content: 'HyperBit - We connect the world 🔌'},
{property: 'og:type', content: 'website'},
{property: 'og:url', content: 'https://hyperbit.it'},
{property: 'og:site_name', content: 'HyperBit SRLs'},
{property: 'og:locale', content: 'it_IT'},
],
link: [
{rel: 'icon', type: 'image/x-icon', href: '/HyperBit_Dark_Logo.svg'}
]
}
},
colorMode: {preference: "light"},
devtools: {enabled: true},
modules: ["@nuxt/ui", '@nuxtjs/plausible'],
Expand Down Expand Up @@ -31,18 +49,5 @@ export default defineNuxtConfig({
}
)
]
},
head: {
charset: 'utf-16',
title: 'HyperBit SRLs',
viewport: 'width=device-width, initial-scale=1',
meta: [{property: 'og:title', content: 'HyperBit SRLs'}, {
property: 'og:description', content: 'HyperBit - We connect the world 🔌'
}, {property: 'og:type', content: 'website'}, {
property: 'og:url', content: 'https://hyperbit.it'
}, {property: 'og:image', content: 'https://hyperbit.it/publicCover.png'}, {
property: 'og:site_name', content: 'HyperBit SRLs'
}, {property: 'og:locale', content: 'it_IT'},],
link: [{rel: 'icon', type: 'image/x-icon', href: '/HyperBit_Dark_Logo.svg'}],
},
}
})

0 comments on commit 9a03f8e

Please sign in to comment.