-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
43 lines (42 loc) · 1.02 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
const {gFonts, themeColor, fontFamily} = require('./config')
module.exports = {
/*
** Build configuration
*/
build: {},
/*
** Headers
** Common headers are already provided by @nuxtjs/pwa preset
*/
head: {
title: 'Berkan Dirim · Software Engineer',
meta: [
{ charset: 'UTF-8' },
{ name: 'description', content: 'Software engineer currently located in Amstelveen, NL.' },
{ name: 'robots', content: 'index, follow' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=5, user-scalable=1' }
],
link: [
{rel: 'preconnect', href: 'https://fonts.googleapis.com'},
{rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: true},
{href: gFonts[fontFamily], rel: 'stylesheet'}
]
},
/*
** Customize the progress-bar color
*/
loading: { color: themeColor },
/*
** Customize app manifest
*/
manifest: {
theme_color: themeColor
},
/*
** Modules
*/
modules: [
'@nuxtjs/pwa'
],
target: 'static'
}