-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnuxt.config.js
More file actions
84 lines (73 loc) · 2.17 KB
/
nuxt.config.js
File metadata and controls
84 lines (73 loc) · 2.17 KB
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
export default {
target: 'static',
head: {
title: 'PET Informática - Ensino, Pesquisa e Extensão na UFPE',
htmlAttrs: {
lang: 'pt-br',
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content:
'O PET-Informática é um programa da Universidade Federal de Pernambuco formado por pessoas alunas de Ciência da Computação. Organizamos cursos, palestras, workshops e olimpíadas para as pessoas alunas da graduação e toda a comunidade local.',
},
{ property: 'og:title', content: 'PET-Informática' },
{ property: 'og:type', content: 'website' },
{
property: 'og:description',
content:
'O PET-Informática é um programa da Universidade Federal de Pernambuco formado por pessoas alunas de Ciência da Computação.',
},
{ property: 'og:locale', content: 'pt_BR' },
{ property: 'og:url', content: 'https://pet.cin.ufpe.br/' },
{
property: 'og:image',
content: 'https://pet.cin.ufpe.br/www/images/artworks/app-cover.png',
},
],
link: [
{ rel: 'icon', type: 'image/png', href: 'images/logos/favicon.png' },
{
rel: 'stylesheet',
href:
'https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap',
},
{
rel: 'stylesheet',
href:
'https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap',
},
{
rel: 'stylesheet',
href:
'https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css',
},
],
},
css: [],
plugins: [
{ src: '~/plugins/vue-enlargeable-image.ts' },
],
components: true,
buildModules: [
'@nuxt/typescript-build',
'@nuxtjs/tailwindcss',
'@nuxtjs/google-analytics',
],
modules: ['@nuxt/content'],
content: {},
build: {},
router: {
base: '/www',
},
components: [
'~/components/elements',
'~/components/sections',
],
googleAnalytics: {
id: 'UA-109129944-5',
},
}