-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
57 lines (52 loc) · 2.16 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
module.exports = {
/*
** Headers of the page
*/
head: {
htmlAttrs: {
lang: 'ru'
},
title: 'Посохов Станислав - веб разработчик',
meta: [
{ charset: 'utf-8' },
{ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Сайт-портфолио веб-разработчка Посохова Станислава' },
{ hid: 'keywords', name: 'keywords', content: 'веб разработка, верстка, создание сайтов' },
{ hid: 'robots', name: 'robots', content: 'index, follow' },
{ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: 'Сайт-портфолио веб-разработчка Посохова Станислава' },
{ hid: 'theme-color', name: 'theme-color', content: '#000' },
{ hid: 'msapplication-navbutton-color', name: 'msapplication-navbutton-color', content: '#000' },
{ hid: 'apple-mobile-web-app-status-bar-style', name: 'apple-mobile-web-app-status-bar-style', content: '#000' }
],
link: [
{ rel: 'dns-prefetch', href: 'http://polyfill.ru' },
{ rel: 'shortcut icon', type: 'image/x-icon', href: '/favicon/favicon.ico' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Raleway:400,600,700' }
]
},
/*
script: [
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/mixitup/3.3.0/mixitup.js', defer: 'defer' }
],
*/
css: [
'~assets/styles/common.styl'
// { src: '~assets/styles/libs/test.css' }
],
// build: {
// vendor: ['mylib']
// },
plugins: [
{ src: '~assets/js/experienceTimer.js', defer: 'defer' },
{ src: '~assets/js/headerBubble.js', defer: 'defer' },
{ src: '~plugins/ga.js', ssr: false }
],
/*
** Customize the progress bar color
*/
loading: false
/*
** Build configuration
*/
}