Nuxt/examples/auth-routes/nuxt.config.js

14 lines
282 B
JavaScript
Raw Normal View History

2016-12-08 15:39:27 +00:00
module.exports = {
head: {
title: 'Auth Routes',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', content: 'Auth Routes example' }
]
2017-05-29 15:00:01 +00:00
},
build: {
vendor: ['axios']
2017-02-03 14:09:27 +00:00
}
2016-12-08 15:39:27 +00:00
}