-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
92 lines (91 loc) · 2.67 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
const routerBase = process.env.DEPLOY_ENV === 'GH_PAGES' ? '/nuxt-ui/' : '/';
const nodeExternals = require('webpack-node-externals');
module.exports = {
/*
** Headers of the page
*/
router: {
linkExactActiveClass: 'active',
base: routerBase
},
head: {
title: 'MVP-NUXT-UI',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'
},
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Muli:400,300' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Montserrat' },
{
rel: 'stylesheet',
href: 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'
},
{ rel: 'stylesheet', href: '/css/themify-icons.css' }
]
},
/*
** Customize the progress bar color
*/
loading: { color: '#3B8070' },
plugins: [
{ src: '~/plugins/axios.js' },
{ src: '~/plugins/dashboard' },
{ src: '~/plugins/globalComponents' },
{ src: '~/plugins/globalDirectives' },
{ src: '~/plugins/charts', ssr: false },
{ src: '@/plugins/echarts.js', ssr: false }
],
modules: [ '@nuxtjs/axios', 'nuxt-logger', 'nuxt-pouch' ],
axios: {
// See https://github.com/nuxt-community/axios-module#options
// credentials: true,
// baseURL: 'http://localhost:3001/api/v1',
// baseURL: process.env.BASE_URL || 'http://localhost:5984/todos'
// redirectError: {
// 401: '/login'
// }
// requestInterceptor: (config, { store, req }) => {
// console.log('HERE')
// return config
// }
},
env: {
// issuerCdnUrl: process.env.ISSUER_CDN_URL || 'https://issuers-cdn.s3.amazonaws.com/securitize'
},
/*
** Build configuration
*/
build: {
extractCSS: true,
vendor: [ 'axios' ],
/*
** Run ESLint on save
*/
extend(config, { isDev, isClient, isServer }) {
if (isDev && isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
});
}
if (isServer) {
config.externals = [
nodeExternals({
// default value for `whitelist` is
// [/es6-promise|\.(?!(?:js|json)$).{1,5}$/i]
whitelist: [ /es6-promise|\.(?!(?:js|json)$).{1,5}$/i, /^vue-echarts/ ]
})
];
}
}
}
};