-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
34 lines (32 loc) · 1.33 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// https://nuxt.com/docs/api/configuration/nuxt-config
const seo = {
title: 'Ikea Circular App',
description: 'Great deals for you and the environment',
image: 'https://www.ikea.com/images/04/01/04019383274fe845d25a89e8786ffc3f.jpg?f=s'
}
export default defineNuxtConfig({
ssr: false,
app: {
head: {
title: seo.title,
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' },
{ name: 'theme-color', content: '#0058AB' },
{ hid: 'title', name: 'title', content: seo.title },
{ hid: 'og:title', property: 'og:title', content: seo.title },
{ hid: 'description', name: 'description', content: seo.description },
{ hid: 'og:description', property: 'og:description', content: seo.description },
{ hid: 'og:image', property: 'og:image', content: seo.image },
{ hid: 'og:type', property: 'og:type', content: 'website' },
{ hid: 'robots', name: 'robots', content: 'index,follow' }
],
link: [
{ rel: 'preconnect', href: 'https://teonji.npkn.net' },
{ rel: 'dns-prefetch', href: 'https://teonji.npkn.net' },
{ rel: 'icon', type: 'image/x-icon', href: 'https://www.ikea.com/favicon.ico' }
]
}
},
modules: ['@nuxtjs/tailwindcss'],
})