-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
145 lines (138 loc) · 2.93 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
module.exports = {
/*
** Headers of the page
*/
head: {
htmlAttrs: {
class: 'has-navbar-fixed-top',
},
titleTemplate: 'Twitelo',
meta: [{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
},
{
hid: 'description',
name: 'description',
content: 'Link your twitter account and your favorite online games! Display your ranks, stats, and more in your twitter profile. Updated automatically!'
},
{
hid: 'og:title',
property: 'og:title',
content: 'Twitelo'
},
{
hid: 'og:url',
property: 'og:url',
content: 'https://twitelo.me'
},
{
hid: 'og:type',
property: 'og:type',
content: 'website'
},
{
hid: 'og:image',
property: 'og:image',
content: 'https://twitelo.me/logo.png'
},
{
hid: 'og:description',
property: 'og:description',
content: 'Twitelo - Link your twitter account and your favorite online games! Display your ranks, stats, and more in your twitter profile. Updated automatically!'
}
],
link: [{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Rubik'
},
{
rel: 'stylesheet',
type: 'text/css',
href: '//cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css'
},
{
rel: 'stylesheet',
type: 'text/css',
href: 'https://use.fontawesome.com/releases/v5.0.6/css/all.css'
},
{
rel: 'stylesheet',
type: 'text/css',
href: 'https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css'
}
],
script: []
},
/*
** Customize the progress bar color
*/
loading: {
color: '#167df0'
},
/*
** Modules
*/
modules: [
'@nuxtjs/axios',
'@nuxtjs/google-analytics'
],
'google-analytics': {
id: 'UA-115012125-1'
},
axios: {
debug: false,
proxy: true
},
/*
** Build configuration
*/
build: {
vendor: ['axios', 'lodash', 'moment', 'vue-i18n', 'vue-notifications'],
/*
** Run ESLint on save
*/
extend(config, {
isDev,
isClient
}) {
if (isDev && isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
},
postcss: {
plugins: {
'postcss-custom-properties': false
}
}
},
plugins: [
'~plugins/buefy',
'~/plugins/i18n.js',
{
src: '~/plugins/vue-notifications',
ssr: false
},
{
src: '~/plugins/vue-native-websocket',
ssr: false
},
{
src: '~plugins/ga.js',
ssr: false
}
],
}