-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
144 lines (144 loc) · 5.07 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// https://nuxt.com/docs/api/configuration/nuxt-config
import { resolve } from 'path';
export default defineNuxtConfig({
modules: [
// Simple usage
['@funken-studio/sitemap-nuxt-3', { generateOnBuild: true }],
['@nuxtjs/robots', { configPath: "~/config/robots.config" }],
],
alias:{
assets:"/<rootDir>/assets",
},
css: [
'~/assets/css/base.css',
'~/assets/fonts/typography.css',
],
app: {
head: {
title: 'Home',
titleTemplate: ' Autocredit | %s',
htmlAttrs: {
lang: 'pt-BR'
},
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
},
{
hid: 'description',
name: 'description',
content: 'A Autocredit é uma empresa que atua no mercado de consulta veicular e análise de credito, sempre trabalhando para satisfazer as necessidades de seus clientes, trazendo consultas atualizadas, segura e confiável, contando com uma vasta base de dodos robusta e segura.'
},
{
name: 'format-detection',
content: 'telephone=no'
},
{
name: 'google-site-verification',
content: 'TWmCgtZYovQZp9MvHdPMXmMDS8atubA9o4TIzbasShk'
},
//Open Graph
{
hid: 'og:site_name',
name: 'og:site_name',
content: 'Autocredit'
},
{
hid: 'og:type',
name: 'og:type',
content: 'website'
},
{
hid: 'og:url',
name: 'og:url',
content: 'https://autocredit.com.br/'
},
{
hid: 'og:title',
name: 'og:title',
content: 'Autocredit'
},
{
hid: 'og:description',
name: 'og:description',
content: 'Autocredit a sua empresa de consulta veicular e análise de crédito.'
},
{
hid: 'og:image',
name: 'og:image',
content: 'assets/images/autocredit-logo.png'
},
{
hid: 'og:image',
property: 'og:image:width',
content: '160'
},
{
hid: 'og:image',
property: 'og:image:height',
content: '100'
},
{
hid: 'og:image',
name: 'og:image',
content: 'assets/images/icons/svg_24h-4.svg'
},
{
hid: 'og:image',
property: 'og:image:width',
content: '80'
},
{
hid: 'og:image',
property: 'og:image:height',
content: '80'
},
{
hid: 'og:author',
name: 'og:author',
content: 'Time da Autocredit'
}
],
link: [
{
rel: 'alternate',
type: 'application/atom+xml',
href: 'https://autocredit.com.br/'
},
{
hid: 'canonical',
rel: 'canonical',
href: 'https://autocredit.com.br',
},
{
rel: 'icon',
type: 'image/x-icon',
href: 'assets/favicons/favicon.ico'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;700;800&display=swap'
},
{
href: 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css',
rel: 'stylesheet',
integrity: 'sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD',
crossorigin: 'anonymous',
},
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css'
}
],
script: [
{
src: 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js',
integrity: 'sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN',
crossorigin: 'anonymous'
}
]
}
}
})