1
1
< % if ( esm ) { - % >
2
2
< % if ( ui === 'vuetify' ) { - % >
3
- import VuetifyLoaderPlugin from 'vuetify-loader/lib/plugin '
3
+ import colors from 'vuetify/es5/util/colors '
4
4
< % } - % >
5
5
< % } else if ( server === 'adonis' ) { - % >
6
6
const { resolve } = require ( 'path' )
7
7
< % } else { - % >
8
8
< % } - % >
9
- < % if ( ! esm ) { - % >
10
- < % if ( ui === 'vuetify' ) { % > const VuetifyLoaderPlugin = require ( 'vuetify-loader/lib/plugin' ) < % } % >
11
- < % } - % >
12
-
13
9
< % if ( esm ) { - % >
14
10
export default {
15
11
< % } else { - % >
@@ -24,6 +20,9 @@ module.exports = {
24
20
** Headers of the page
25
21
*/
26
22
head: {
23
+ < % if ( ui === 'vuetify' ) { % >
24
+ titleTemplate : '%s - ' + process . env . npm_package_name ,
25
+ < % } % >
27
26
title: process.env.npm_package_name || '',
28
27
meta: [
29
28
{ charset : 'utf-8' } ,
@@ -50,8 +49,7 @@ module.exports = {
50
49
*/
51
50
css: [< % if ( ui = == 'element-ui ') { % >
52
51
'element-ui/lib/theme-chalk/index.css'< % } else if (ui === 'tailwind') { % >
53
- '~/assets/css/tailwind.css'< % } else if ( ui = == 'vuetify ') { % >
54
- '~/assets/style/app.styl'< % } else if ( ui = == 'iview ') { % >
52
+ '~/assets/css/tailwind.css' < % } else if (ui === 'iview') { % >
55
53
'iview/dist/styles/iview.css' < % } else if (ui === 'ant-design-vue') { % >
56
54
'ant-design-vue/dist/antd.css' < % } else if (ui === 'tachyons') { % >
57
55
'tachyons/css/tachyons.css' < % } %>
@@ -61,8 +59,7 @@ module.exports = {
61
59
** Plugins to load before mounting the App
62
60
*/
63
61
plugins : [ < % if ( ui = == 'element-ui ') { % >
64
- '@/plugins/element-ui'< % } else if ( ui = == 'vuetify ') { % >
65
- '@/plugins/vuetify'< % } else if ( ui = == 'iview ') { % >
62
+ '@/plugins/element-ui'< % } else if ( ui = == 'iview ') { % >
66
63
'@/plugins/iview'< % } else if ( ui = == 'ant-design-vue ') { % >
67
64
'@/plugins/antd-ui'< % } % >
68
65
],
@@ -80,14 +77,33 @@ module.exports = {
80
77
// Doc: https://buefy.github.io/#/documentation
81
78
'nuxt-buefy',< % } % > < % if ( pwa = == 'yes ') { % >
82
79
'@nuxtjs/pwa',< % } % > < % if ( eslint = == 'yes ') { % >
83
- '@nuxtjs/eslint-module',< % } % >
80
+ '@nuxtjs/eslint-module',< % } % > < % if ( ui = == 'vuetify ') { % >
81
+ '@nuxtjs/vuetify',< % } % >
84
82
],
85
83
< % if ( axios = == 'yes ') { % >
86
84
/*
87
85
** Axios module configuration
88
86
** See https://axios.nuxtjs.org/options
89
87
*/
90
88
axios: {
89
+
90
+ } ,< % } % >
91
+
92
+ < % if ( ui = == 'vuetify ') { % >
93
+ /*
94
+ ** vuetify module configuration
95
+ ** https://github.com/nuxt-community/vuetify-module
96
+ */
97
+ vuetify: {
98
+ theme : {
99
+ primary : colors . blue . darken2 ,
100
+ accent : colors . grey . darken3 ,
101
+ secondary : colors . amber . darken3 ,
102
+ info : colors . teal . lighten1 ,
103
+ warning : colors . amber . base ,
104
+ error : colors . deepOrange . accent4 ,
105
+ success : colors . green . accent3
106
+ }
91
107
} ,< % } % >
92
108
93
109
/*
@@ -100,13 +116,6 @@ module.exports = {
100
116
customProperties : false
101
117
}
102
118
}
103
- } , < % } %> < % if ( ui = == 'vuetify ') { % >
104
- transpile: ['vuetify/lib'],
105
- plugins: [new VuetifyLoaderPlugin()],
106
- loaders: {
107
- stylus : {
108
- import : [ '~assets/style/variables.styl' ]
109
- }
110
119
} , < % } %> < % if ( ui = == 'element-ui ') { % >
111
120
transpile: [/^element-ui/],
112
121
< % } % >
0 commit comments