Nuxt/examples/coffeescript/nuxt.config.js

25 lines
533 B
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
export default {
2017-10-13 12:10:24 +00:00
/*
** Headers of the page
*/
head: {
2018-01-05 08:43:35 +00:00
title: 'Nuxt with CoffeeScript',
2017-10-13 12:10:24 +00:00
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Customize the progress bar color
*/
loading: { color: '#3B8070' },
/*
2018-01-05 08:43:35 +00:00
** Modules
2017-10-13 12:10:24 +00:00
*/
2018-01-05 08:43:35 +00:00
modules: ['~/modules/coffeescript']
2017-10-13 12:10:24 +00:00
}