-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
152 lines (150 loc) · 4.39 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
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
145
146
147
148
149
150
151
152
export default {
mode: 'universal',
/*
** Headers of the page
*/
head: {
title: process.env.npm_package_name || '',
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content: 'width=device-width, initial-scale=1, shrink-to-fit=no'
},
{
hid: 'description',
name: 'description',
content: process.env.npm_package_description || ''
}
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/icon.png' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Montserrat:400,600,700'
},
{
rel: 'stylesheet',
href:
'https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i'
},
{ rel: 'stylesheet', href: './css/bootstrap.css' },
{ rel: 'stylesheet', href: './css/fontawesome-all.css' },
{ rel: 'stylesheet', href: './css/magnific-popup.css' },
{ rel: 'stylesheet', href: './css/styles.css' },
{ rel: 'stylesheet', href: './css/swiper.css' }
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: [],
/*
** Plugins to load before mounting the App
*/
plugins: [],
/*
** Nuxt.js dev-modules
*/
buildModules: [
// Doc: https://github.com/nuxt-community/eslint-module
'@nuxtjs/eslint-module'
],
/*
** Nuxt.js modules
*/
modules: [
[
'nuxt-i18n',
{
locales: ['pt', 'en'],
defaultLocale: 'pt',
vueI18n: {
fallbackLocale: 'pt',
messages: {
pt: {
nav: {
home: "INÍCIO",
our_team: "NOSSA EQUIPE",
contact_us: "CONTATO"
},
header: {
our_service: "Nossos serviços são",
service_01: "Desenvolvimento Web",
service_02: "Consultoria",
service_03: "Designer de produto",
more: "e muito mais!",
description: "Codificamos produtos digitais com tecnologias criativas e focamos na qualidade de back-end até o front-end!",
contact_button: "ENTRE EM CONTATO AGORA!"
},
team: {
title: "Equipe"
},
contact: {
title: "Contato",
description: "Não hesite em nos enviar um e-mail ou use o formulário de contato abaixo",
form_input_01: "Nome",
form_input_02: "Email",
form_input_03: "Sua mensagem",
form_button: "ENVIAR MENSAGEM"
},
footer: {
title: "Sobre a PyroCode",
about: "PyroCode é uma inovação digital, criamos projetos para empresas que visam criar produtos de próximo nível.",
social_media: "Redes Sociais"
}
},
en: {
nav: {
home: "HOME",
our_team: "OUR TEAM",
contact_us: "CONTACT US"
},
header: {
our_service: "Our services are",
service_01: "Web Development",
service_02: "Tech Consulting",
service_03: "Product Designer",
more: "and more!",
description: "We coding digital products with creative technologies and focus in quality from backend to frontend!",
contact_button: "CONTACT US NOW!"
},
team: {
title: "Team"
},
contact: {
title: "Contact",
description: "Don't hesitate to send us a email or just use the contact form below",
form_input_01: "Name",
form_input_02: "Email",
form_input_03: "You message",
form_button: "SUBMIT MESSAGE"
},
footer: {
title: "About PyroCode",
about: "PyroCode is a digital innovation, we build projects for for companies that aim to build next level products.",
social_media: "Social Media"
}
}
}
}
}
]
],
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
},
router: {
base: '/'
}
}