mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
26 lines
473 B
JavaScript
26 lines
473 B
JavaScript
export default {
|
|
/*
|
|
** Head elements
|
|
** Add Roboto font and Material Icons
|
|
*/
|
|
head: {
|
|
link: [
|
|
{
|
|
rel: 'stylesheet',
|
|
type: 'text/css',
|
|
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'
|
|
}
|
|
]
|
|
},
|
|
build: {
|
|
extractCSS: true
|
|
},
|
|
buildModules: [
|
|
'@nuxtjs/vuetify'
|
|
],
|
|
vuetify: {
|
|
customVariables: ['~/assets/variables.scss'],
|
|
optionsPath: './vuetify.options.js'
|
|
}
|
|
}
|