-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
112 lines (101 loc) · 3.2 KB
/
nuxt.config.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import { defineNuxtConfig } from 'nuxt/config'
export default defineNuxtConfig({
runtimeConfig: {
public: {
site: {
url: 'https://etifilm.com'
},
recaptchaSiteKey: process.env.VUE_APP_RECAPTCHA_PUBLIC_KEY || '',
mailRecipient: process.env.MAIL_RECIPIENT || '',
ogImage: {
enabled: false
},
robots: {
enabled: true
},
seoExperiments: {
enabled: true
},
schemaOrg: {
enabled: true
},
linkChecker: {
enabled: false
},
},
private: {
recaptchaSecretKey: process.env.VUE_APP_RECAPTCHA_SECRET_KEY,
gmailUser: process.env.GMAIL_USER,
gmailPass: process.env.GMAIL_APP_PASS,
mailhogHost: process.env.MAILHOG_HOST,
mailhogPort: process.env.MAILHOG_PORT
}
},
router: {
options: {
scrollBehavior(to, from, savedPosition) {
return { top: 0, behavior: 'smooth' };
}
}
},
app: {
head: {
title: 'ETIFILM - Embalajes Industriales en Tenerife, Islas Canarias',
htmlAttrs: {
lang: 'es'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'ETIFILM ofrece soluciones de embalajes industriales en Tenerife, Islas Canarias. Especialistas en calidad y servicio.' },
{ name: 'keywords', content: 'embalajes industriales, Tenerife, Islas Canarias, embalaje, empaquetado, logística, fleje, film, precinto, cordel' },
{ name: 'author', content: 'ETIFILM' },
// Open Graph (OG) meta tags para mejorar en redes sociales
{ property: 'og:title', content: 'ETIFILM - Embalajes Industriales en Tenerife, Islas Canarias' },
{ property: 'og:description', content: 'Soluciones de embalajes industriales en Tenerife, con calidad y servicio excepcionales.' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://etifilm.com' },
{ property: 'og:image', content: 'https://etifilm.com/images/og-image.jpg' },
// Twitter Card meta tags
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'ETIFILM - Embalajes Industriales en Tenerife' },
{ name: 'twitter:description', content: 'Soluciones de embalajes industriales con calidad y servicio excepcionales en Islas Canarias.' },
{ name: 'twitter:image', content: 'https://etifilm.com/images/og-image.jpg' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/images/etifilm-favicon.svg' },
],
link: [
{
rel: 'preload',
href: '/fonts/FFF-AcidGrotesk-Light.woff2',
as: 'font',
type: 'font/woff2',
crossorigin: 'anonymous'
}
]
}
},
css: [
'~/assets/styles/styles.css'
],
components: true,
modules: [
'@nuxtjs/seo',
'nuxt-schema-org',
'@nuxtjs/sitemap',
'@nuxtjs/robots'
],
sitemap: {
hostname: 'https://etifilm.com',
gzip: true,
routes: [
'/',
'/privacidad',
]
},
experimental: {
asyncEntry: true,
},
compatibilityDate: '2024-07-19'
})