-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnuxt.config.js
118 lines (110 loc) · 2.88 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
const pkg = require('./package')
module.exports = {
target: process.env.NUXT_TARGET || 'static',
ssr: process.env.NUXT_SSR === 'true' || false,
generate: {
exclude: [/^\/.+/], // only pregenerate the index page
crawler: false
},
/*
** Headers of the page
*/
head: {
title: 'æternity Explorer',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: pkg.description }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Customize the progress-bar color
*/
loading: {
continuous: true,
color: '#FF0D6A'
},
/*
** Global CSS
*/
css: [
{ src: 'styles/index.scss', lang: 'scss' },
{
src: 'vue-multiselect/dist/vue-multiselect.min.css',
lang: 'css'
}
],
env: {
nodeURL: process.env.NUXT_APP_NODE_URL || 'https://mainnet.aeternity.io/v3',
middlewareURL: process.env.NUXT_APP_MDW_URL || 'https://mainnet.aeternity.io/mdw',
middlewareWS: process.env.NUXT_APP_NODE_WS || 'wss://mainnet.aeternity.io/mdw/websocket',
networkName: process.env.NUXT_APP_NETWORK_NAME || 'MAINNET',
otherDeployments: process.env.NUXT_APP_OTHER_DEPLOYMENTS || 'TESTNET@https://explorer.testnet.aeternity.io',
enableFaucet: process.env.NUXT_APP_ENABLE_FAUCET === 'true' || false,
faucetAPI: process.env.NUXT_APP_FAUCET_API || 'https://testnet.faucet.aepps.com/account',
APIDocs: process.env.NUXT_APP_API_DOCS || 'https://github.com/aeternity/ae_mdw#http-endpoints',
version: process.env.npm_package_version
},
/*
** Plugins to load before mounting the App
*/
plugins: [
{ src: '~/plugins/directives/copyToClipboard.js' },
{ src: '~/plugins/directives/removeSpacesOnCopy.js' },
{ src: '~/plugins/ws.js' }
],
/*
** Router config
*/
router: {
linkActiveClass: 'active-link',
linkExactActiveClass: 'exact-active-link'
},
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/svg-sprite',
'@nuxtjs/moment'
],
buildModules: [
'@nuxtjs/style-resources',
'@nuxt/postcss8',
],
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
transpile: ['@aeternity/aepp-sdk/es/utils/swagger', '@aeternity/aepp-sdk/es/utils/crypto'],
postcss: {
plugins: {
autoprefixer: {}
}
},
loaders: {
scss: {
implementation: require('sass'),
sassOptions: {
quietDeps: true
}
}
},
extend(config, { isDev, isClient }) {
if (isDev && isClient) {
const options = {
exclude: ['node_modules'],
fix: true,
extensions: ['.js', '.vue']
}
const EslintPlugin = require('eslint-webpack-plugin')
config.plugins.push(new EslintPlugin(options))
}
}
}
}