mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
16 lines
341 B
JavaScript
16 lines
341 B
JavaScript
module.exports = {
|
|
head: {
|
|
title: 'Nuxt.js + Vue-ChartJS',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
]
|
|
},
|
|
build: {
|
|
vendor: ['axios', 'moment', 'chart.js', 'vue-chartjs']
|
|
},
|
|
env: {
|
|
githubToken: '42cdf9fd55abf41d24f34c0f8a4d9ada5f9e9b93'
|
|
}
|
|
}
|