mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
19 lines
415 B
JavaScript
19 lines
415 B
JavaScript
|
|
const { join } = require('path')
|
|
|
|
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' }
|
|
]
|
|
}
|
|
}
|