-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
nuxt.config.js
167 lines (160 loc) · 3.64 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import pkg from './package'
// import ogImage from '~/assets/image/intro.png';
export default {
mode: 'universal',
/*
** Headers of the page
*/
head: {
htmlAttrs: {
lang: 'en'
},
title: 'Design Tokens Generator',
description: 'Design tokens are the minimum elements of the design system',
meta: [{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
},
{
hid: 'description',
name: 'description',
content: 'Design tokens are the minimum elements of the design system'
},
// Open Graph
{
hid: 'og:title',
property: 'og:title',
content: 'Design Tokens Generator'
},
{
hid: 'og:description',
property: 'og:description',
content: 'Design tokens are the minimum elements of the design system'
},
{
hid: 'og:type',
property: 'og:type',
content: 'website'
},
{
hid: 'og:url',
property: 'og:url',
content: 'https://quinalha.me/design-tokens-generator'
},
{
hid: 'og:image',
property: 'og:image',
content: ' https://quinalha.me/design-tokens-generator/intro.png'
},
{
hid: 'og:image:alt',
property: 'og:image:alt',
content: 'Design Tokens Generator image'
},
// Twitter Card
{
hid: 'twitter:card',
property: 'twitter:card',
content: 'summary'
},
{
hid: 'twitter:site',
property: 'twitter:site',
content: '@gustavoquinalha'
},
{
hid: 'twitter:title',
property: 'twitter:title',
content: 'Design Tokens Generator'
},
{
hid: 'twitter:description',
property: 'twitter:description',
content: 'Design tokens are the minimum elements of the design system'
},
{
hid: 'twitter:image',
property: 'twitter:image',
content: 'https://quinalha.me/design-tokens-generator/intro.png'
},
{
hid: 'twitter:image:alt',
property: 'twitter:image:alt',
content: 'Design Tokens Generator image'
}
],
link: [{
rel: 'icon',
type: 'image/x-icon',
href: '/design-tokens-generator/favicon.ico'
},
{
rel: 'shortcut icon',
href: '/design-tokens-generator/favicon.ico',
type: 'image/x-icon'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Montserrat:700,900'
},
{
rel: 'stylesheet',
href: 'https://use.fontawesome.com/releases/v5.8.1/css/all.css',
integrity: 'sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf',
crossorigin: 'anonymous'
}
],
script: []
},
/*
** Customize the progress-bar color
*/
loading: {
color: '#000'
},
/*
** Global CSS
*/
css: [
'@/assets/css/main.scss'
],
/*
** Plugins to load before mounting the App
*/
plugins: [{
src: '~/plugins/aos',
ssr: false
}],
router: {
base: '/design-tokens-generator/'
},
/*
** Nuxt.js modules
*/
modules: [
['nuxt-sass-resources-loader', '@/assets/css/_variables.scss'],
['vue-github-buttons/nuxt', {
css: false
}],
'@nuxtjs/google-gtag'
],
'google-gtag': {
id: 'UA-88441841-3', // required
debug: true // enable to track in dev mode
},
node: {
fs: 'empty'
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
}
}