Nuxt/examples/with-vuetify/nuxt.config.js

30 lines
547 B
JavaScript
Raw Normal View History

const { join } = require('path')
2017-03-14 20:13:39 +00:00
module.exports = {
2017-06-19 23:04:23 +00:00
/*
** Head elements
** Add Roboto font and Material Icons
*/
head: {
link: [
2017-06-19 23:04:23 +00:00
{ rel: 'stylesheet', type: 'text/css', href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' }
]
2017-06-19 23:04:23 +00:00
},
/*
** Add Vuetify into vendor.bundle.js
*/
build: {
vendor: ['vuetify'],
extractCSS: true
},
/*
** Load Vuetify into the app
*/
plugins: ['~/plugins/vuetify'],
2017-06-19 23:04:23 +00:00
/*
** Load Vuetify CSS globally
*/
css: ['~/assets/app.styl']
2017-03-14 20:13:39 +00:00
}