Nuxt/examples/plugins-vendor/nuxt.config.js

9 lines
194 B
JavaScript
Raw Normal View History

2016-11-08 01:57:55 +00:00
const { join } = require('path')
module.exports = {
build: {
vendor: ['axios', 'mini-toastr', 'vue-notifications']
},
plugins: [ join(__dirname, './plugins/vue-notifications.js') ]
2016-11-08 01:57:55 +00:00
}