Nuxt/examples/i18n/nuxt.config.js

13 lines
164 B
JavaScript
Raw Normal View History

2017-02-08 16:33:13 +00:00
module.exports = {
2017-02-10 12:05:05 +00:00
loading: {
color: 'cyan'
},
2017-02-08 17:49:16 +00:00
router: {
middleware: 'i18n'
},
2017-02-08 16:33:13 +00:00
build: {
2017-02-08 17:49:16 +00:00
vendor: ['axios']
2017-02-08 16:33:13 +00:00
},
2017-02-08 17:49:16 +00:00
plugins: ['~plugins/i18n']
2017-02-08 16:33:13 +00:00
}