-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnuxt.config.js
102 lines (102 loc) · 2.32 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
export default {
// mode: 'spa',
/*
** Headers of the page
*/
head: {
titleTemplate: '%s - MESG Explorer',
title: 'MESG Explorer',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content:
'Explore and interact with the data present on the MESG Network'
}
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: [],
/*
** Plugins to load before mounting the App
*/
plugins: ['~/plugins/pluralize', '~/plugins/clipboard'],
serverMiddleware: [
// API middleware
'~/api/index.js'
],
/*
** Nuxt.js dev-modules
*/
buildModules: [
// Doc: https://github.com/nuxt-community/eslint-module
// '@nuxtjs/eslint-module',
'@nuxtjs/vuetify',
'@nuxtjs/google-analytics'
],
env: {
ENGINE_HOST: process.env.ENGINE_HOST || 'engine',
FAUCET_MNEMONIC: process.env.FAUCET_MNEMONIC,
TWITTER_CONSUMER_KEY: process.env.TWITTER_CONSUMER_KEY,
TWITTER_CONSUMER_SECRET: process.env.TWITTER_CONSUMER_SECRET,
TWITTER_ACCESS_TOKEN_KEY: process.env.TWITTER_ACCESS_TOKEN_KEY,
TWITTER_ACCESS_TOKEN_SECRET: process.env.TWITTER_ACCESS_TOKEN_SECRET
},
googleAnalytics: {
asyncID: ({ nuxtState }) => nuxtState.env.GA_ID
},
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/pwa',
[
'nuxt-env',
{
keys: [
{ key: 'HOST', default: 'http://localhost:3000' },
{ key: 'WS_HOST', default: 'ws://localhost:3002' },
{ key: 'GA_ID', default: '' }
]
}
]
],
/*
** vuetify module configuration
** https://github.com/nuxt-community/vuetify-module
*/
vuetify: {
customVariables: ['~/assets/variables.scss'],
theme: {
themes: {
light: {
primary: '#491E8C',
accent: '#8350DB',
secondary: '#388DF5',
info: '#144DD1',
warning: '#E08C04',
error: '#9E2316',
success: '#238218'
}
}
}
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
}
}