2018-03-16 16:12:06 +00:00
|
|
|
export default {
|
2017-06-19 23:04:23 +00:00
|
|
|
/*
|
|
|
|
** Head elements
|
|
|
|
** Add Roboto font and Material Icons
|
|
|
|
*/
|
2017-03-19 07:17:32 +00:00
|
|
|
head: {
|
|
|
|
link: [
|
2018-08-21 11:10:50 +00:00
|
|
|
{
|
|
|
|
rel: 'stylesheet',
|
|
|
|
type: 'text/css',
|
|
|
|
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'
|
|
|
|
}
|
2017-03-19 07:17:32 +00:00
|
|
|
]
|
2017-06-19 23:04:23 +00:00
|
|
|
},
|
|
|
|
build: {
|
2020-07-26 15:57:31 +00:00
|
|
|
extractCSS: true
|
2017-06-19 23:04:23 +00:00
|
|
|
},
|
2020-07-26 15:57:31 +00:00
|
|
|
buildModules: [
|
|
|
|
'@nuxtjs/vuetify'
|
|
|
|
],
|
|
|
|
vuetify: {
|
|
|
|
customVariables: ['~/assets/variables.scss'],
|
|
|
|
optionsPath: './vuetify.options.js'
|
|
|
|
}
|
2017-03-14 20:13:39 +00:00
|
|
|
}
|