Nuxt/examples/storybook/nuxt.config.js

41 lines
802 B
JavaScript
Raw Normal View History

2018-10-06 18:38:47 +00:00
const pkg = require('./package')
2018-02-06 02:36:22 +00:00
2018-10-06 18:38:47 +00:00
module.exports = {
2018-02-06 02:36:22 +00:00
mode: 'universal',
/*
** Headers of the page
*/
head: {
title: pkg.name,
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: pkg.description }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' }
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#3B8070' },
/*
** Global CSS
*/
css: [
'vuetify/src/stylus/main.styl'
],
/*
** Plugins to load before mounting the App
*/
plugins: [
'@/plugins/vuetify'
2018-02-06 11:56:28 +00:00
]
2018-02-06 02:36:22 +00:00
}