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

18 lines
331 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: [
2017-05-11 18:16:35 +00:00
{ rel: 'preload', as: 'style', href: 'https://fonts.googleapis.com/css?family=Roboto' }
]
}
2017-03-14 20:13:39 +00:00
}