-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
75 lines (75 loc) · 2 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
export default defineNuxtConfig({
app: {
head: {
title: "Engenheiro de software e resolvedor de problemas",
titleTemplate: "João Procópio: %s",
htmlAttrs: {
lang: "pt-BR",
},
meta: [
{ charset: "utf-8" },
{
hid: "viewport",
name: "viewport",
content: "width=device-width, initial-scale=1.0, minimum-scale=1.0",
},
{
hid: "google-site-verification",
name: "google-site-verification",
content: "zSPPjtXp_CJ-oYGfkizcdrePI0Vt8tvGefn2msmrC5w",
},
{
hid: "description",
name: "description",
content:
"João Procópio é um engenheiro de software que acredita na tecnologia como um caminho para resolver problemas reais",
},
{ hid: "robots", name: "robots", content: "index, follow" },
],
link: [
{
key: "canonical",
rel: "canonical",
href: "v1.joaoprocopio.com.br",
},
{
key: "icon",
rel: "icon",
href: "/favicon.svg",
},
{
rel: "preconnect",
href: "https://fonts.googleapis.com",
},
{
rel: "preconnect",
href: "https://fonts.gstatic.com",
crossorigin: "",
},
{
rel: "preload",
as: "style",
type: "text/css",
onload: "this.rel='stylesheet'",
href: "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap",
},
{
rel: "preload",
as: "style",
type: "text/css",
onload: "this.rel='stylesheet'",
href: "https://fonts.googleapis.com/css2?family=Cousine:wght@400&display=swap",
},
],
},
},
modules: ["@nuxt/content", "@nuxt/image-edge"],
css: ["~/assets/styles/index.css"],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
telemetry: false,
})