Nuxt/examples/with-vuetify/nuxt.config.js
2017-06-20 01:04:23 +02:00

30 lines
545 B
JavaScript

const { join } = require('path')
module.exports = {
/*
** 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' }
]
},
/*
** Add Vuetify into vendor.bundle.js
*/
build: {
vendor: ['vuetify'],
extractCSS: true
},
/*
** Load Vuetify into the app
*/
plugins: ['~plugins/vuetify'],
/*
** Load Vuetify CSS globally
*/
css: ['~assets/app.styl']
}