mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
56 lines
960 B
JavaScript
56 lines
960 B
JavaScript
|
const pkg = require('./package')
|
||
|
|
||
|
module.exports = {
|
||
|
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'
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
** Nuxt.js modules
|
||
|
*/
|
||
|
modules: [
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
** Build configuration
|
||
|
*/
|
||
|
build: {
|
||
|
/*
|
||
|
** You can extend webpack config here
|
||
|
*/
|
||
|
}
|
||
|
}
|