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

19 lines
415 B
JavaScript
Raw Normal View History

const { join } = require('path')
2017-03-14 20:13:39 +00:00
module.exports = {
build: {
vendor: ['vuetify']
},
plugins: ['~plugins/vuetify.js'],
css: [
{ src: join(__dirname, 'css/app.styl'), lang: 'styl' }
],
head: {
link: [
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Roboto' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/icon?family=Material+Icons' }
]
}
2017-03-14 20:13:39 +00:00
}