mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
38 lines
750 B
JavaScript
38 lines
750 B
JavaScript
const nodeExternals = require('webpack-node-externals')
|
|
|
|
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,
|
|
extend(config, ctx) {
|
|
if (ctx.isServer) {
|
|
config.externals = [
|
|
nodeExternals({
|
|
whitelist: [/^vuetify/]
|
|
})
|
|
]
|
|
}
|
|
}
|
|
},
|
|
/*
|
|
** Load Vuetify into the app
|
|
*/
|
|
plugins: ['~/plugins/vuetify'],
|
|
/*
|
|
** Load Vuetify CSS globally
|
|
*/
|
|
css: ['~/assets/app.styl']
|
|
}
|